This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2023-06-12 12:01:05 +00:00
|
|
|
name: authentik-on-release-next-branch
|
2023-06-12 10:25:24 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: "0 12 * * *" # every day at noon
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
update-next:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
environment: internal-production
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
ref: main
|
|
|
|
- id: main-status
|
|
|
|
run: |
|
2023-06-12 12:01:05 +00:00
|
|
|
status=$(curl -fsSL -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{ github.token }}" "https://api.github.com/repos/${{ github.repository }}/commits/HEAD/status" | jq -r '.status')
|
2023-06-12 10:25:24 +00:00
|
|
|
echo "status=${status}" >> $GITHUB_OUTPUT
|
|
|
|
- if: ${{ steps.main-status.outputs.status == 'success' }}
|
|
|
|
run: |
|
|
|
|
git push origin next --force
|