Skip to content

Commit

Permalink
Merge pull request #145 from Kuadrant/run-nightly-deploy
Browse files Browse the repository at this point in the history
Run nightly deploy
  • Loading branch information
openshift-merge-bot[bot] authored Nov 12, 2024
2 parents 5756cdc + 335774e commit daa649f
Showing 1 changed file with 16 additions and 9 deletions.
25 changes: 16 additions & 9 deletions .github/workflows/mike-redeploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ on:
description: 'Source Branch'
required: true
default: '0.8'
schedule:
- cron: '0 0 * * *' # Runs every day at midnight UTC

jobs:
mike-redeploy:
Expand All @@ -19,7 +21,7 @@ jobs:
uses: actions/checkout@v2
with:
fetch-depth: 0 # Fetches all history for all branches and tags
ref: ${{ github.event.inputs.sourceBranch }}
ref: ${{ github.event_name == 'schedule' && 'main' || github.event.inputs.sourceBranch }}

- name: Setup Python
uses: actions/setup-python@v2
Expand All @@ -32,15 +34,20 @@ jobs:
- name: Validate User Permissions
id: validate_user
run: |
USER_PERMISSION=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
"https://api.github.com/repos/${{ github.repository }}/collaborators/${{ github.actor }}/permission")
echo "User permissions: $USER_PERMISSION"
if [[ "$USER_PERMISSION" =~ (\"permission\": \"admin\") ]]; then
echo "User is authorized to deploy."
if [ "${{ github.event_name }}" == "schedule" ]; then
echo "Scheduled run, bypassing user permission check."
echo "::set-output name=can_deploy::true"
else
echo "::error::User is not authorized to deploy."
echo "::set-output name=can_deploy::false"
USER_PERMISSION=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
"https://api.github.com/repos/${{ github.repository }}/collaborators/${{ github.actor }}/permission")
echo "User permissions: $USER_PERMISSION"
if [[ "$USER_PERMISSION" =~ (\"permission\": \"admin\") ]]; then
echo "User is authorized to deploy."
echo "::set-output name=can_deploy::true"
else
echo "::error::User is not authorized to deploy."
echo "::set-output name=can_deploy::false"
fi
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -54,6 +61,6 @@ jobs:
- name: Deploy Documentation
if: steps.validate_user.outputs.can_deploy == 'true'
run: |
mike deploy ${{ github.event.inputs.version }} -t "${{ github.event.inputs.version }}" --push
mike deploy ${{ github.event_name == 'schedule' && 'dev' || github.event.inputs.version }} -t "${{ github.event_name == 'schedule' && 'dev' || github.event.inputs.version }}" --push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit daa649f

Please sign in to comment.