v5.4.7 #16
Workflow file for this run
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
| name: Resolved Pending Release | |
| on: | |
| release: | |
| types: [published] | |
| permissions: {} | |
| jobs: | |
| comment-on-issues: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| # Check this repository out, otherwise the script won't be available, | |
| # as it otherwise checks out the repository where the workflow caller is located | |
| repository: antvis/github-config | |
| - name: Comment on issues | |
| uses: actions/[email protected] | |
| with: | |
| script: | | |
| const script = require('./.github/workflows/scripts/closeOnRelease.js'); | |
| await script({core, github, context}); |