oci.sh: hide non-error message (HMS-8591) #44
Workflow file for this run
This file contains hidden or 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: Tests | |
| on: | |
| pull_request: | |
| branches: | |
| - "*" | |
| jobs: | |
| shellcheck: | |
| name: "🐚 Shellcheck" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: Run ShellCheck | |
| uses: ludeeus/action-shellcheck@2.0.0 | |
| env: | |
| # don't check /etc/os-release sourcing, allow useless cats to live inside our codebase, and | |
| # allow seemingly unreachable commands | |
| SHELLCHECK_OPTS: -e SC1091 -e SC2002 -e SC2317 | |
| cloud-cleaner-is-enabled: | |
| name: "🧹 cloud-cleaner-is-enabled" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check if workflow is enabled | |
| run: | | |
| curl https://github.com/osbuild/cloud-cleaner/actions/workflows/run_ib.yml 2>/dev/null | grep -vz "This scheduled workflow is disabled" >/dev/null | |
| - name: How to enable cloud-cleaner | |
| if: failure() | |
| run: | | |
| echo "Cloud-cleaner is disabled" | |
| echo "Go to https://github.com/osbuild/cloud-cleaner/actions/workflows/run_ib.yml and" | |
| echo "https://github.com/osbuild/cloud-cleaner/actions/workflows/run_cloudx.yml and" | |
| echo "manually enable it!" |