aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/matrix-bot.yml
diff options
context:
space:
mode:
authorHenrik Tjäder <henrik@tjaders.com>2023-03-02 22:38:25 +0100
committerHenrik Tjäder <henrik@tjaders.com>2023-03-02 22:38:25 +0100
commitf03aede2f5a926bdb26d052766492c32454a60dd (patch)
tree77e13743b4dd0b8b9cac3a2a600b16e7c5ccf1ce /.github/workflows/matrix-bot.yml
parent4a3f7ea123aa4ed2f89531b4cd25773264301ff8 (diff)
Fixes for repo rename to rtic
Diffstat (limited to '.github/workflows/matrix-bot.yml')
-rw-r--r--.github/workflows/matrix-bot.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/matrix-bot.yml b/.github/workflows/matrix-bot.yml
index 6ef6787..bc985d9 100644
--- a/.github/workflows/matrix-bot.yml
+++ b/.github/workflows/matrix-bot.yml
@@ -5,7 +5,7 @@ on:
jobs:
new-pr:
- if: github.event.action == 'opened' && github.repository == 'rtic-rs/cortex-m-rtic'
+ if: github.event.action == 'opened' && github.repository == 'rtic-rs/rtic'
runs-on: ubuntu-latest
continue-on-error: true
steps:
@@ -18,7 +18,7 @@ jobs:
server: "matrix.org"
merged-pr:
- if: github.event.action == 'closed' && github.event.pull_request.merged == true && github.repository == 'rtic-rs/cortex-m-rtic'
+ if: github.event.action == 'closed' && github.event.pull_request.merged == true && github.repository == 'rtic-rs/rtic'
runs-on: ubuntu-latest
continue-on-error: true
steps:
@@ -31,7 +31,7 @@ jobs:
server: "matrix.org"
abandoned-pr:
- if: github.event.action == 'closed' && github.event.pull_request.merged == false && github.repository == 'rtic-rs/cortex-m-rtic'
+ if: github.event.action == 'closed' && github.event.pull_request.merged == false && github.repository == 'rtic-rs/rtic'
runs-on: ubuntu-latest
continue-on-error: true
steps: