https://github.com/JasonEtco/signoff-commit-action
✍️ Action that creates an empty commit with a list of commits to "sign off on"
https://github.com/JasonEtco/signoff-commit-action
Last synced: 5 days ago
JSON representation
✍️ Action that creates an empty commit with a list of commits to "sign off on"
- Host: GitHub
- URL: https://github.com/JasonEtco/signoff-commit-action
- Owner: JasonEtco
- License: mit
- Created: 2019-12-15T06:20:02.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-15T06:50:08.000Z (over 5 years ago)
- Last Synced: 2024-10-24T15:14:02.511Z (9 months ago)
- Homepage:
- Size: 4.88 KB
- Stars: 6
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[WIP] signoff-commit-action
A GitHub Action that creates an empty commit with a list of commits to "sign off on".
|  |
| --- |> **Note**: This is super WIP - at the moment, it uses [actions/github-script](https://github.com/actions/github-script) to spike out functionality [directly in the workflow file](/.github/workflows/signoff.yml). This will eventually be moved to a reusable action instead.
---
Current limitations:
* Obviously, this is written directly into the YAML file. We'd move it out to a JS Action.
* This runs an Actions workflow on every issue comment - _every_ issue comment. Might be able to lift some of that to the workflow (via [`steps[].if`](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions#jobsjob_idstepsif)) but this could cause usage/billing problems.
* The commit is shown as being authored and committed by GitHub Actions; we can't easily say "authored by " because that requires an email that we don't necessarily have. We can try to get the user's public email, or from a previous commit.