-
Notifications
You must be signed in to change notification settings - Fork 6
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 #73 from zowe/update-workflows-v1
Update workflow permissions (v1)
- Loading branch information
Showing
2 changed files
with
35 additions
and
1 deletion.
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
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 Closed PR Contents | ||
|
||
on: | ||
pull_request_target: | ||
types: closed | ||
|
||
jobs: | ||
remove-pr: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Pages Branch | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: 'gh-pages' | ||
|
||
- name: Remove directory | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.ZOWE_ROBOT_TOKEN }} | ||
run: | | ||
rm -rf docs/pr-${{ github.event.number }} | ||
git config --global user.name ${{ secrets.ZOWE_ROBOT_USER }} | ||
git config --global user.email ${{ secrets.ZOWE_ROBOT_EMAIL }} | ||
git rm -r docs/pr-${{ github.event.number }} | ||
git commit -sm "Remove Zowe Web Help for PR ${{ github.event.number }}" | ||
git push origin HEAD | ||
gh workflow run -r gh-pages deploy-pages.yml |