Refresh ELN container images #368
This file contains 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
# ====================================== | |
# WARNING! | |
# THIS FILE IS GENERATED FROM A TEMPLATE | |
# DO NOT EDIT THIS FILE MANUALLY! | |
# ====================================== | |
# The template is located in: container-autoupdate-eln.yml.j2 | |
# a smaller sibling of the Fedora refresh; split to provide cleaner statuses | |
name: Refresh ELN container images | |
on: | |
schedule: | |
- cron: 0 0 * * * | |
# be able to start this action manually from a actions tab when needed | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
eln: | |
# Don't run scheduled workflows on forks. | |
if: github.event_name != 'schedule' || github.repository == 'rhinstaller/anaconda' | |
uses: ./.github/workflows/container-rebuild-action.yml | |
secrets: inherit | |
with: | |
container-tag: eln | |
branch: master | |
base-container: 'quay.io/fedoraci/fedora:eln-x86_64' |