Track doc-en changes #58
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: "Track doc-en changes" | |
| on: | |
| schedule: | |
| - cron: "0 6 * * *" | |
| workflow_dispatch: | |
| permissions: | |
| issues: write | |
| contents: read | |
| jobs: | |
| track: | |
| name: "Track doc-en changes" | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - name: "Checkout doc-fr" | |
| uses: "actions/checkout@v4" | |
| - name: "Check doc-en merges and create issues" | |
| env: | |
| GH_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
| GH_REPO: "${{ github.repository }}" | |
| run: bash .github/scripts/track-en-changes.sh |