Skip to content

Commit

Permalink
Change removal of labels to ubuntu latest to avoid stuck runners (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
dkosteck authored Mar 1, 2023
1 parent 055cfe3 commit 1ebc24c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ jobs:
permissions:
pull-requests: write
issues: write
runs-on: self-hosted
runs-on: ubuntu-latest
if: always() && contains(github.event.label.name, 'e2e-test')
steps:
- name: remove label
run: |
curl --silent -X DELETE -H 'Accept: application/vnd.github.v3+json' -H 'Authorization: token ${{ github.token }}' 'https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.number }}/labels/e2e-test'
curl --silent -X DELETE -H 'Accept: application/vnd.github.v3+json' -H 'Authorization: token ${{ github.token }}' 'https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.number }}/labels/e2e-test'

0 comments on commit 1ebc24c

Please sign in to comment.