Bump actions/stale from 3f3b0175e8c66fb49b9a6d5a0cd1f8436d4c3ab6 to f69122271d990fd11f5594ccff2296f00ff59b49 #1288
Workflow file for this run
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
--- | |
name: Validation | |
on: | |
pull_request: | |
# Unlabeled is needed when `dependent` label is removed, to re-validate the release. | |
types: [unlabeled, opened, synchronize, reopened] | |
permissions: {} | |
jobs: | |
yamls: | |
name: Release YAMLs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
with: | |
fetch-depth: 0 | |
- name: Validate release YAMLs | |
run: make validate | |
# This job runs the script in "dryrun" mode, not doing any changes to the repo. | |
# This should make sure the script at least works as intended (given a valid yaml). | |
release: | |
name: Dry-run the Release | |
needs: yamls | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
with: | |
fetch-depth: 0 | |
- name: Set up QEMU (to support building on non-native architectures) | |
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf | |
- name: Create the release in dry-run mode | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
QUAY_USERNAME: ${{ secrets.QUAY_USERNAME }} | |
QUAY_PASSWORD: ${{ secrets.QUAY_PASSWORD }} | |
RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }} | |
run: make do-release DRY_RUN=true |