Skip to content

Commit

Permalink
fix: use better naming for GA (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
ramizpolic authored Nov 29, 2023
1 parent 4b6c1d7 commit af36782
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This action needs works for "pull_request" and "pull_request_target" triggers

name: _pr-sync
name: _pr-common

on:
workflow_call:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This action works for any trigger

name: _project-sync
name: _project-common

on:
workflow_call:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-sync.yml → .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ on:
- synchronize

jobs:
sync:
uses: ./.github/workflows/_pr-sync.yml
common:
uses: ./.github/workflows/_pr-common.yml
permissions:
pull-requests: write
issues: write
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ on:
workflow_dispatch:

jobs:
sync:
uses: ./.github/workflows/_project-sync.yml
common:
uses: ./.github/workflows/_project-common.yml
permissions:
issues: write
pull-requests: write

0 comments on commit af36782

Please sign in to comment.