Adjust signatures and checksums using the link downloads.apache.org. #181
Workflow file for this run
This file contains 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: Auto close issue when PR is merged | |
on: | |
pull_request_target: | |
types: [ closed ] | |
jobs: | |
close-issue: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: "Auto issue closer" | |
uses: ./.github/actions/Auto_close_associate_issue/ | |
id: Closer | |
with: | |
prbody: ${{ github.event.pull_request.body }} | |
- name: Close Issue | |
uses: peter-evans/close-issue@v2 | |
if: ${{ github.event.pull_request.merged && steps.Closer.outputs.issueNumber != -1 }} | |
with: | |
issue-number: ${{ steps.Closer.outputs.issueNumber }} | |
comment: The associated PR has been merged, this issue is automatically closed, you can reopend if necessary. | |
env: | |
Github_Token: ${{ secrets.GITHUB_TOKEN }} | |
PRNUM: ${{ github.event.pull_request.number }} |