@natjswenson/shipflow 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@natjswenson/shipflow",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Scaffold a configurable dev/main branching, auto-merge, branch-cleanup, and release-tagging workflow into any repo",
5
5
  "license": "MIT",
6
6
  "author": "Nate Swenson",
@@ -28,7 +28,7 @@ jobs:
28
28
  runs-on: ubuntu-latest
29
29
  steps:
30
30
  - name: Enable auto-merge
31
- run: gh pr merge --auto {{MERGE_FLAG}} "${{ github.event.pull_request.number }}"
31
+ run: gh pr merge --auto {{MERGE_FLAG}} "${{ github.event.pull_request.number }}" --repo "${{ github.repository }}"
32
32
  env:
33
33
  GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34
34
 
@@ -47,6 +47,6 @@ jobs:
47
47
  pull-requests: write
48
48
  steps:
49
49
  - name: Apply release-pending label
50
- run: gh pr edit "${{ github.event.pull_request.number }}" --add-label release-pending
50
+ run: gh pr edit "${{ github.event.pull_request.number }}" --add-label release-pending --repo "${{ github.repository }}"
51
51
  env:
52
52
  GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}