feat: add the Gerstenhaber problem for three commuting matrices (#5313) #1518
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' | |
| # The dispatch authenticates with REPO_DISPATCH_PAT, so GITHUB_TOKEN needs nothing. | |
| permissions: {} | |
| steps: | |
| - name: Send repository dispatch event | |
| uses: peter-evans/repository-dispatch@ff45666b9427631e3450c54a1bcbee4d9ff4d7c0 # 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 |