Skip to content

Commit 09c0143

Browse files
bitofbreezeactions-user
authored andcommitted
Merge pull request #10 from bitofbreeze/review
add reviews GitOrigin-RevId: 5ff458c9ac57701349dd5184f3dc7f6df634c086
1 parent 5bbe4e0 commit 09c0143

4 files changed

+11
-3
lines changed

.github/workflows/packages.react-router-busy.copy.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,15 @@ jobs:
1515
# And when PR merged in source, it still closes PR in destination but doesn't update destination repo
1616
# Need to make sure only runs in mono and react-router-busy, not other mirrors
1717
# But also could just not mirror these actions to others
18-
if: (github.repository == 'bitofbreeze/mono' || github.repository == 'bitofbreeze/react-router-busy') && (github.event_name != 'push' || github.repository != 'bitofbreeze/mono')
18+
# "54: Nothing to do in the SoT repo except for push events."
19+
if: (github.repository == 'bitofbreeze/mono' || github.repository == 'bitofbreeze/react-router-busy') && (github.event_name != 'push' || github.repository != 'bitofbreeze/mono') && (github.event_name != 'synchronize' || github.repository != 'bitofbreeze/mono')
1920
runs-on: ubuntu-latest
2021
steps:
22+
# TODO Not working in PR that this was added in
23+
- name: Log
24+
run: echo "event name is:" ${{ github.event_name }}
25+
- name: Log 2
26+
run: echo "event type is:" ${{ github.event.action }}
2127
- name: Check out code
2228
uses: actions/checkout@v4
2329
with:

.github/workflows/packages.react-router-busy.integrate.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Integrate
1+
name: Integrate react-router-busy
22

33
on:
44
pull_request:

.github/workflows/packages.react-router-busy.release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Release
1+
name: Release react-router-busy
22

33
on:
44
workflow_dispatch:

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ yarn.lock
1010
.wrangler
1111

1212
*.db
13+
*.db-shm
14+
*.db-wal
1315

1416
# dev secrets
1517
.dev.vars

0 commit comments

Comments
 (0)