Pop-up dictionary browser extension for language learning. Successor to Yomichan. (PERSONAL FORK)
1name: Auto-Approve Safe PRs
2on: pull_request
3permissions: {}
4jobs:
5 auto-approve:
6 runs-on: ubuntu-latest
7 steps:
8 - name: Save the PR number in an artifact
9 shell: bash
10 env:
11 PR_NUM: ${{ github.event.number }}
12 run: echo "$PR_NUM" > pr_num.txt
13 - name: Upload the PR number
14 uses: actions/upload-artifact@v6
15 with:
16 name: pr_num
17 path: ./pr_num.txt