Release - Update next branch #266
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: Release - Update next branch | |
| on: | |
| schedule: | |
| - cron: "0 12 * * *" # every day at noon | |
| workflow_dispatch: | |
| permissions: | |
| # Needed to be able to push to the next branch | |
| contents: write | |
| jobs: | |
| update-next: | |
| if: ${{ github.repository != 'goauthentik/authentik-internal' }} | |
| runs-on: ubuntu-latest | |
| environment: internal-production | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| ref: main | |
| - run: | | |
| git push origin --force main:next |