-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
be96002
commit 189eaf2
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Close Issue on Commit | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
|
||
jobs: | ||
close-issue: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check commit messages for issue references | ||
id: commit-check | ||
uses: actions/github-script@v5 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
script: | | ||
const commits = await github.repos.listCommits({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
ref: process.env.GITHUB_SHA | ||
}); | ||
for (const commit of commits.data) { | ||
const match = commit.commit.message.match(/#(\d+)/); | ||
if (match) { | ||
console.log(`Found issue reference in commit: ${match[0]}`); | ||
const issueNumber = parseInt(match[1]); | ||
console.log(`Issue number: ${issueNumber}`); | ||
await github.issues.update({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
issue_number: issueNumber, | ||
state: "closed" | ||
}); | ||
console.log(`Issue ${issueNumber} closed`); | ||
} | ||
} |