Skip to content

Commit 7268ed9

Browse files
committed
reverted image to ubuntu-latest
1 parent 01493ab commit 7268ed9

8 files changed

+9
-9
lines changed

.github/workflows/assignee-management.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
handle_assignment:
2323
name: Handle Issue Assignment Changes
2424
if: ${{ !github.event.issue.pull_request && github.event.issue.state == 'open' }}
25-
runs-on: unity-linux-runner
25+
runs-on: ubuntu-latest
2626
permissions:
2727
issues: write
2828

@@ -54,7 +54,7 @@ jobs:
5454
handle_investigating_label:
5555
name: Handle Investigating Label Addition
5656
if: ${{ github.event.action == 'labeled' && github.event.label.name == 'stat:Investigating' && !github.event.issue.pull_request && github.event.issue.state == 'open' }}
57-
runs-on: unity-linux-runner
57+
runs-on: ubuntu-latest
5858
permissions:
5959
issues: write
6060

.github/workflows/autoupdate.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
autoupdate:
99
name: auto-update
10-
runs-on: unity-linux-runner
10+
runs-on: ubuntu-latest
1111
steps:
1212
- uses: docker://chinthakagodawita/autoupdate-action:v1
1313
env:

.github/workflows/conventional-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
# This workflow contains a single job called "build"
1212
build:
1313
# The type of runner that the job will run on
14-
runs-on: unity-linux-runner
14+
runs-on: ubuntu-latest
1515

1616
# Steps represent a sequence of tasks that will be executed as part of the job
1717
steps:

.github/workflows/conversation-labels.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
conversation_labels:
2323
name: Calculate and update conversation labels of the issue
2424
if: ${{ !github.event.issue.pull_request && github.event.issue.state == 'open' }}
25-
runs-on: unity-linux-runner
25+
runs-on: ubuntu-latest
2626
permissions:
2727
issues: write
2828

.github/workflows/mark-stale-issue.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313

1414
jobs:
1515
stale:
16-
runs-on: unity-linux-runner
16+
runs-on: ubuntu-latest
1717
permissions:
1818
issues: write
1919

.github/workflows/pr-description-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818

1919
jobs:
2020
pr-description-validation:
21-
runs-on: unity-linux-runner
21+
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout code
2424
uses: actions/checkout@v5

.github/workflows/qa-reviewer-assignment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
contains(github.event.pull_request.body, '- [x] `Review automated tests`') ||
1818
contains(github.event.pull_request.body, '- [x] `Execute manual tests`') ||
1919
contains(github.event.pull_request.body, '- [x] `Provide feedback about the PR`')
20-
runs-on: unity-linux-runner
20+
runs-on: ubuntu-latest
2121

2222

2323
steps:

.github/workflows/remove-labels-on-issue-close.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
remove_labels:
1111
name: Calculate and remove issue labels
1212
if: ${{ !github.event.issue.pull_request }} # This is needed to distinguish from PRs (which we don't want to affect)
13-
runs-on: unity-linux-runner
13+
runs-on: ubuntu-latest
1414
permissions:
1515
issues: write
1616

0 commit comments

Comments
 (0)