feat(OEIS): A067220 (#1878) #480
This file contains hidden or 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: Notify erdosproblems of update | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| notify: | |
| runs-on: ubuntu-latest | |
| # Not running on forks | |
| if: github.repository == 'google-deepmind/formal-conjectures' | |
| steps: | |
| - name: Send repository dispatch event | |
| uses: peter-evans/repository-dispatch@v3 | |
| with: | |
| # A Fine-grained personal access token with `Repository access` set to | |
| # "Only select repositories", namely "teorth/erdosproblems" and `permissions` | |
| # "Contents, Access: Read and write" can be used here. | |
| token: ${{ secrets.REPO_DISPATCH_PAT }} | |
| repository: teorth/erdosproblems | |
| event-type: formal-conjecture-updated |