Skip to content

Bump eslint from 8.21.0 to 8.47.0 #7

Bump eslint from 8.21.0 to 8.47.0

Bump eslint from 8.21.0 to 8.47.0 #7

Workflow file for this run

name: Demo
on:
issue_comment:
jobs:
# only run this workflow if the previous run has completed
consecutiveness:
runs-on: ubuntu-latest
if: ${{ github.event.issue.title == 'Demo' }}
steps:
- uses: actions/checkout@v2
- uses: ./
with:
token: ${{ secrets.GITHUB_TOKEN }}
# some other job
something:
runs-on: ubuntu-latest
needs: [ consecutiveness ]
steps:
- run: |
echo "Previous workflow runs have completed!"
sleep 60