Skip to content

Commit

Permalink
Add checkout, python setup steps for approval workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
hvidy committed Feb 14, 2024
1 parent 080c65a commit 2c06ed0
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/approve-label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,17 @@ jobs:
if: contains(github.event.label.name, 'approved')
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

# setup python
- name: setup python
uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: "pip"
- run: pip install -r requirements.txt

- name: Verify Labeler
id: verify_labeler
env:
Expand Down

0 comments on commit 2c06ed0

Please sign in to comment.