Skip to content

Commit

Permalink
merged actions updates from newapi branch
Browse files Browse the repository at this point in the history
  • Loading branch information
kosloot committed Nov 16, 2023
1 parent 4d28346 commit 1f40d28
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 8 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/cleanup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Delete old workflow runs
on:
schedule:
- cron: '0 0 1 * *'
# Run monthly, at 00:00 on the 1t day of month. (testing)

jobs:
del_runs:
runs-on: ubuntu-latest
permissions:
actions: write
steps:
- name: Delete workflow runs
uses: Mattraks/delete-workflow-runs@v2
with:
token: ${{ github.token }}
repository: ${{ github.repository }}
retain_days: 30
keep_minimum_runs: 6
8 changes: 4 additions & 4 deletions .github/workflows/colibri-core-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: Notify start to ##gitlama
steps:
- name: IRC notification
uses: Gottox/irc-message-action@v1
uses: Gottox/irc-message-action@v2
with:
server: irc.uvt.nl
channel: '#gitlama'
Expand All @@ -33,7 +33,7 @@ jobs:
compiler: [g++]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install Build Environment
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:

- name: Notify IRC of failure
if: ${{ failure() }}
uses: Gottox/irc-message-action@v1
uses: Gottox/irc-message-action@v2
with:
server: irc.uvt.nl
channel: '#gitlama'
Expand All @@ -81,7 +81,7 @@ jobs:

- name: Notify IRC of success
if: ${{ success() }}
uses: Gottox/irc-message-action@v1
uses: Gottox/irc-message-action@v2
with:
server: irc.uvt.nl
channel: '#gitlama'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/colibri-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Notify start to ##gitlama
steps:
- name: IRC notification
uses: Gottox/irc-message-action@v1
uses: Gottox/irc-message-action@v2
with:
server: irc.uvt.nl
channel: '#gitlama'
Expand All @@ -30,7 +30,7 @@ jobs:
compiler: [g++]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install Build Environment
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
Expand All @@ -54,7 +54,7 @@ jobs:

- name: Notify IRC of failure
if: ${{ failure() }}
uses: Gottox/irc-message-action@v1
uses: Gottox/irc-message-action@v2
with:
server: irc.uvt.nl
channel: '#gitlama'
Expand All @@ -63,7 +63,7 @@ jobs:

- name: Notify IRC of success
if: ${{ success() }}
uses: Gottox/irc-message-action@v1
uses: Gottox/irc-message-action@v2
with:
server: irc.uvt.nl
channel: '#gitlama'
Expand Down

0 comments on commit 1f40d28

Please sign in to comment.