mirror of
https://github.com/goauthentik/authentik.git
synced 2026-06-18 11:29:26 +03:00
cf4dd24b6f
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
24 lines
496 B
YAML
24 lines
496 B
YAML
---
|
|
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
|