Pull Contributions from raycast/extensions #115
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: Pull Contributions from raycast/extensions | |
| on: | |
| schedule: | |
| - cron: "0 0 * * *" # Runs at midnight UTC daily | |
| workflow_dispatch: | |
| jobs: | |
| update-repository: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: Pull contributions | |
| run: npx @raycast/api@latest pull-contributions --emoji --non-interactive | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Push changes | |
| run: git push |