Skip to content

Explore Widget - tagging each button #133

Explore Widget - tagging each button

Explore Widget - tagging each button #133

Workflow file for this run

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