Skip to content

ci(deps): update swatinem/rust-cache action to v2.6.0 #218

ci(deps): update swatinem/rust-cache action to v2.6.0

ci(deps): update swatinem/rust-cache action to v2.6.0 #218

Workflow file for this run

name: DO NOT MERGE
on:
pull_request:
types:
- opened
- labeled
- unlabeled
permissions:
pull-requests: read
jobs:
debug:
name: Debug
runs-on: ubuntu-latest
defaults:
run:
shell: bash -xe {0}
steps:
- run: echo ${{ github.event.commits[0].url }} >> $GITHUB_STEP_SUMMARY
- run: |
echo "GITHUB_EVENT_PATH
\`\`\`json
`cat $GITHUB_EVENT_PATH`
\`\`\`" >> $GITHUB_STEP_SUMMARY
- run: |
echo "gh
\`\`\`console
`gh --version`
\`\`\`" >> $GITHUB_STEP_SUMMARY
- run: |
echo "docker
\`\`\`console
`docker --version`
\`\`\`" >> $GITHUB_STEP_SUMMARY
- run: |
echo "docker-compose
\`\`\`console
`docker-compose --version`
\`\`\`" >> $GITHUB_STEP_SUMMARY
- run: |
echo 'github context
```json
${{ toJSON(github) }}
```' >> $GITHUB_STEP_SUMMARY
do-not-merge:
name: '!!!'
if: github.event.label.name == 'do NOT merge!!!'
runs-on: ubuntu-22.04
steps:
- run: |
if ${{ contains(github.event.pull_request.labels.*.name, 'do NOT merge!!!') }}; then
false
else
true
fi