Skip to content

Commit 2b2dfe1

Browse files
authored
Merge pull request #1453 from Sofie-Automation/ci/changes-after-org-switch
CI: changes after switch to new Github organisation
2 parents f0971cf + 4d236c5 commit 2b2dfe1

File tree

5 files changed

+38
-39
lines changed

5 files changed

+38
-39
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @nrkno/sofieteam
1+
* @Sofie-Automation/maintainers

.github/dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ updates:
1111
open-pull-requests-limit: 0
1212
# Default reviewers
1313
reviewers:
14-
- "@nrkno/sofieteam"
14+
- "@Sofie-Automation/maintainers"
1515

1616
- package-ecosystem: "github-actions"
1717
# Workflow files stored in the
@@ -20,4 +20,4 @@ updates:
2020
schedule:
2121
interval: "weekly"
2222
reviewers:
23-
- "@nrkno/sofie-ops"
23+
- "@Sofie-Automation/operations"

.github/workflows/prune-container-images.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@ on:
77

88
jobs:
99
prune-container-images:
10-
if: ${{ github.repository_owner == 'nrkno' }}
11-
12-
uses: nrkno/sofie-github-workflows/.github/workflows/prune-container-images.yml@main
10+
if: ${{ github.repository_owner == 'Sofie-Automation' }}
11+
uses: Sofie-Automation/sofie-github-workflows/.github/workflows/prune-container-images.yml@main
1312
strategy:
1413
max-parallel: 1
1514
matrix:

.github/workflows/prune-tags.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ on:
1616

1717
jobs:
1818
prune-tags:
19-
if: ${{ github.repository_owner == 'nrkno' }}
20-
19+
if: ${{ github.repository_owner == 'Sofie-Automation' }}
20+
2121
name: Prune tags
2222
runs-on: ubuntu-latest
2323
timeout-minutes: 15
@@ -29,15 +29,15 @@ jobs:
2929

3030
- name: Prune tags (scheduled)
3131
if: github.event_name == 'schedule'
32-
uses: nrkno/sofie-github-workflows/.github/actions/tag-pruner@tag-pruner-v1
32+
uses: Sofie-Automation/sofie-github-workflows/.github/actions/tag-pruner@tag-pruner-v1
3333
with:
3434
older-than: 30
3535
ignore: v[0-9]+\.[0-9]+\.[0-9]+.*
3636
simulation: false
3737

3838
- name: Prune tags (manual)
3939
if: github.event_name == 'workflow_dispatch'
40-
uses: nrkno/sofie-github-workflows/.github/actions/tag-pruner@tag-pruner-v1
40+
uses: Sofie-Automation/sofie-github-workflows/.github/actions/tag-pruner@tag-pruner-v1
4141
with:
4242
older-than: ${{ github.event.inputs.older-than }}
4343
ignore: ${{ github.event.inputs.ignore }}

.github/workflows/trivy.yml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -63,32 +63,32 @@ jobs:
6363
echo "SUMMARY=$summary" >> $GITHUB_ENV
6464
echo ${{ env.SUMMARY }}
6565
66-
- name: Send Slack Notification
67-
uses: slackapi/[email protected]
68-
with:
69-
webhook: ${{ secrets.SLACK_WEBHOOK_URL }}
70-
webhook-type: incoming-webhook
71-
payload: |
72-
text: "Trivy scan results"
73-
blocks:
74-
- type: "header"
75-
text:
76-
type: "plain_text"
77-
text: "Trivy scan results for sofie-core-${{ matrix.image }}:latest"
78-
- type: "section"
79-
text:
80-
type: "mrkdwn"
81-
text: ":thisisfine: ${{ env.SUMMARY }}"
82-
- type: "section"
83-
text:
84-
type: "mrkdwn"
85-
text: "Read the full scan results on Github"
86-
accessory:
87-
type: "button"
88-
text:
89-
type: "plain_text"
90-
text: ":github: Scan results"
91-
emoji: true
92-
value: "workflow_run"
93-
url: "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
94-
action_id: "button-action"
66+
# - name: Send Slack Notification
67+
# uses: slackapi/[email protected]
68+
# with:
69+
# webhook: ${{ secrets.SLACK_WEBHOOK_URL }}
70+
# webhook-type: incoming-webhook
71+
# payload: |
72+
# text: "Trivy scan results"
73+
# blocks:
74+
# - type: "header"
75+
# text:
76+
# type: "plain_text"
77+
# text: "Trivy scan results for sofie-core-${{ matrix.image }}:latest"
78+
# - type: "section"
79+
# text:
80+
# type: "mrkdwn"
81+
# text: ":thisisfine: ${{ env.SUMMARY }}"
82+
# - type: "section"
83+
# text:
84+
# type: "mrkdwn"
85+
# text: "Read the full scan results on Github"
86+
# accessory:
87+
# type: "button"
88+
# text:
89+
# type: "plain_text"
90+
# text: ":github: Scan results"
91+
# emoji: true
92+
# value: "workflow_run"
93+
# url: "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
94+
# action_id: "button-action"

0 commit comments

Comments
 (0)