[Feature request] Improve Signer callback using std::function (similar to Progress callback) #26
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This ensures that when a ticket is labeled as Done in Jira, it will close the ticket on GitHub. | |
| name: Labeling ticket "Done" | |
| on: | |
| issues: | |
| types: [labeled] | |
| jobs: | |
| label_issues: | |
| runs-on: ubuntu-latest | |
| if: | | |
| contains(github.event.issue.labels.*.name, 'status: done') | |
| permissions: | |
| issues: write | |
| steps: | |
| - run: 'gh issue close "$NUMBER"' | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| GH_REPO: ${{ github.repository }} | |
| NUMBER: ${{ github.event.issue.number }} |