Skip to content

Commit

Permalink
chore: fix the runner type
Browse files Browse the repository at this point in the history
  • Loading branch information
kazami139 authored and GitHub Enterprise committed Feb 7, 2023
1 parent 6af2deb commit 700044d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/azure-staticwebapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
contents: read # for actions/checkout to fetch code
pull-requests: write # for Azure/static-web-apps-deploy to comment on PRs
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed')
runs-on: ubuntu-latest
runs-on: [ Linux, ARO ]
name: Build and Deploy Job
steps:
- uses: actions/checkout@v3
Expand All @@ -59,7 +59,7 @@ jobs:
permissions:
contents: none
if: github.event_name == 'pull_request' && github.event.action == 'closed'
runs-on: ubuntu-latest
runs-on: [ Linux, ARO ]
name: Close Pull Request Job
steps:
- name: Close Pull Request
Expand Down

0 comments on commit 700044d

Please sign in to comment.