Add tracking of Immutable Tab across Insights #120
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: "Add unmerged files to holder file" | |
on: | |
pull_request_target: | |
types: [closed] | |
jobs: | |
triage: | |
if: github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
env: | |
NACHOBOT_TOKEN: ${{ secrets.NACHOBOT_TOKEN }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 3 | |
token: ${{ secrets.NACHOBOT_TOKEN }} | |
- name: Update holder file | |
run: bash holder.sh | |
- name: Commit files | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "NachoBot" | |
git commit -m "Update holder file" -a | |
git push |