Skip to content

Commit

Permalink
Merge pull request BewlyBewly#125 from hakadao/main
Browse files Browse the repository at this point in the history
sync: main to dev
  • Loading branch information
hakadao authored Jan 7, 2024
2 parents 14fd4ec + bbd83fd commit d9c4bd0
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/sync-bugfixes.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Sync Back to Bugfixes
on:
push:
branches:
- main

jobs:
sync-branches:
runs-on: ubuntu-latest
name: Syncing branches
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: 12
- name: Opening pull request
id: pull
uses: tretuna/[email protected]
with:
GITHUB_TOKEN: ${{secrets.SYNC_TOKEN}}
FROM_BRANCH: main
TO_BRANCH: bugfixes
24 changes: 24 additions & 0 deletions .github/workflows/sync-dev-firefox.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Sync Back to Dev Firefox
on:
push:
branches:
- dev

jobs:
sync-branches:
runs-on: ubuntu-latest
name: Syncing branches
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: 12
- name: Opening pull request
id: pull
uses: tretuna/[email protected]
with:
GITHUB_TOKEN: ${{secrets.SYNC_TOKEN}}
FROM_BRANCH: dev
TO_BRANCH: dev-firefox
24 changes: 24 additions & 0 deletions .github/workflows/sync-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Sync Back to Dev
on:
push:
branches:
- main

jobs:
sync-branches:
runs-on: ubuntu-latest
name: Syncing branches
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: 12
- name: Opening pull request
id: pull
uses: tretuna/[email protected]
with:
GITHUB_TOKEN: ${{secrets.SYNC_TOKEN}}
FROM_BRANCH: main
TO_BRANCH: dev

0 comments on commit d9c4bd0

Please sign in to comment.