Skip to content

Commit

Permalink
Merge pull request #1112 from Permify/chore/sync-upstream
Browse files Browse the repository at this point in the history
chore(sync): synchronize with permify pro repo
  • Loading branch information
tolgaOzen committed Mar 6, 2024
2 parents f7de7de + 44185a1 commit 3f34e98
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/sync.yml
@@ -0,0 +1,44 @@
name: Sync to Permify Pro
on:
schedule:
- cron: '0 7 * * 1,4'
workflow_dispatch:

jobs:
sync_latest_from_upstream:
runs-on: ubuntu-latest
name: Sync latest commits from upstream repo

steps:
# REQUIRED step
# Step 1: run a standard checkout action, provided by github
- name: Checkout target repo
uses: actions/checkout@v3
with:
ref: master
persist-credentials: false

# REQUIRED step
# Step 2: run the sync action
- name: Sync upstream changes
id: sync
uses: aormsby/Fork-Sync-With-Upstream-action@v3.4
with:
target_sync_branch: master
target_repo_token: ${{ secrets.GH_TOKEN }}
upstream_sync_branch: sync
upstream_sync_repo: Permify/permify-pro
upstream_repo_access_token: ${{ secrets.GH_TOKEN }}
test_mode: true

# Step 3: Display a sample message based on the sync output var 'has_new_commits'
- name: New commits found
if: steps.sync.outputs.has_new_commits == 'true'
run: echo "New commits were found to sync."

- name: No new commits
if: steps.sync.outputs.has_new_commits == 'false'
run: echo "There were no new commits."

- name: Show value of 'has_new_commits'
run: echo ${{ steps.sync.outputs.has_new_commits }}

0 comments on commit 3f34e98

Please sign in to comment.