-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1077 from CrowleyRajapakse/newmaster
Adding delete workflow trigger action
- Loading branch information
Showing
1 changed file
with
26 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,26 @@ | ||
name: Remove github integration action trigger label | ||
on: | ||
pull_request_target: | ||
types: | ||
- synchronize | ||
- closed | ||
concurrency: | ||
group: apim-apk-agent-${{ github.event.number || github.run_id }} | ||
cancel-in-progress: true | ||
jobs: | ||
remove-label: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Remove label | ||
run: | | ||
TOKEN="${{ secrets.GITHUB_TOKEN }}" | ||
PR_NUMBER="${{ github.event.number }}" | ||
LABEL_TO_REMOVE="trigger-action" | ||
# Remove the label from the pull request | ||
curl -X DELETE \ | ||
-H "Authorization: token $TOKEN" \ | ||
"https://api.github.com/repos/${{ github.repository }}/issues/${PR_NUMBER}/labels/${LABEL_TO_REMOVE}" |