mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-17 10:10:25 +00:00
43 lines
1.6 KiB
YAML
43 lines
1.6 KiB
YAML
name: Nightly S3 Update
|
|
run-name: "Nightly S3 (branch: ${{ github.ref_name }})"
|
|
|
|
on:
|
|
workflow_dispatch: {}
|
|
schedule:
|
|
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onschedule
|
|
- cron: '0 1 * * *' # Every day at 1AM
|
|
|
|
jobs:
|
|
|
|
workflow-requirements:
|
|
name: Check Workflow Requirements
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
requirements-met: ${{ steps.check-requirements.outputs.requirements-met }}
|
|
steps:
|
|
- name: Check For Admin Permission
|
|
if: ${{ github.event_name != 'schedule' }}
|
|
uses: actions-cool/check-user-permission@v2
|
|
with:
|
|
require: admin
|
|
username: ${{ github.triggering_actor }}
|
|
|
|
- name: Check Requirements
|
|
id: check-requirements
|
|
run: |
|
|
if [ "${{ vars.RUN_SCHEDULED_BUILDS }}" = "1" ]; then
|
|
MSG="Running workflow because RUN_SCHEDULED_BUILDS=1"
|
|
echo "${MSG}"
|
|
echo "${MSG}" >> "${GITHUB_STEP_SUMMARY}"
|
|
echo "requirements-met=true" >> "${GITHUB_OUTPUT}"
|
|
elif [ "${{ github.event.repository.fork }}" = "true" ]; then
|
|
MSG="Not running workflow because ${{ github.repository }} is a fork"
|
|
echo "${MSG}"
|
|
echo "${MSG}" >> "${GITHUB_STEP_SUMMARY}"
|
|
echo "requirements-met=false" >> "${GITHUB_OUTPUT}"
|
|
else
|
|
MSG="Running workflow because ${{ github.repository }} is not a fork"
|
|
echo "${MSG}"
|
|
echo "${MSG}" >> "${GITHUB_STEP_SUMMARY}"
|
|
echo "requirements-met=true" >> "${GITHUB_OUTPUT}"
|
|
fi
|