Skip to content

Commit 12a7d3c

Browse files
committed
env: altera job runner para self-hosted acervos e comenta agendamento de testes aos domingos
1 parent 8c60a67 commit 12a7d3c

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111

1212
jobs:
1313
tests:
14-
runs-on: ubuntu-latest
14+
runs-on: [self-hosted, acervos]
1515
env:
1616
# The ci step will test the dspace-angular code against DSpace REST.
1717
# Direct that step to utilize a DSpace REST service that has been started in docker.
@@ -196,7 +196,7 @@ jobs:
196196
codecov:
197197
# Must run after 'tests' job above
198198
needs: tests
199-
runs-on: ubuntu-latest
199+
runs-on: [self-hosted, acervos]
200200
steps:
201201
- name: Checkout
202202
uses: actions/checkout@v4

.github/workflows/codescan.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ on:
1919
paths-ignore:
2020
- '**/*.md'
2121
- '**/*.txt'
22-
schedule:
23-
- cron: "37 0 * * 1"
22+
#schedule:
23+
#- cron: "37 0 * * 1"
2424

2525
jobs:
2626
analyze:
2727
name: Analyze Code
28-
runs-on: ubuntu-latest
28+
runs-on: [self-hosted, acervos]
2929
# Limit permissions of this GitHub action. Can only write to security-events
3030
permissions:
3131
actions: read

.github/workflows/issue_opened.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
permissions: {}
99
jobs:
1010
automation:
11-
runs-on: ubuntu-latest
11+
runs-on: [self-hosted, acervos]
1212
steps:
1313
# Add the new issue to a project board, if it needs triage
1414
# See https://github.com/actions/add-to-project

.github/workflows/label_merge_conflicts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
triage:
1919
# Ensure this job never runs on forked repos. It's only executed for 'dspace/dspace-angular'
2020
if: github.repository == 'dspace/dspace-angular'
21-
runs-on: ubuntu-latest
21+
runs-on: [self-hosted, acervos]
2222
permissions:
2323
pull-requests: write
2424
steps:

.github/workflows/port_merged_pull_request.yml

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

1919
jobs:
2020
port_pr:
21-
runs-on: ubuntu-latest
21+
runs-on: [self-hosted, acervos]
2222
# Don't run on closed *unmerged* pull requests
2323
if: github.event.pull_request.merged
2424
steps:

.github/workflows/pull_request_opened.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ permissions:
1616

1717
jobs:
1818
automation:
19-
runs-on: ubuntu-latest
19+
runs-on: [self-hosted, acervos]
2020
steps:
2121
# Assign the PR to whomever created it. This is useful for visualizing assignments on project boards
2222
# See https://github.com/toshimaru/auto-author-assign

0 commit comments

Comments
 (0)