File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ on : pull_request_target
2+
3+ jobs :
4+ apply-label :
5+ if : github.event.pull_request.head.repo.full_name != github.repository
6+ runs-on : ubuntu-latest
7+ steps :
8+ - uses : actions/github-script@v3
9+ with :
10+ github-token : ${{secrets.GITHUB_TOKEN}}
11+ script : |
12+ github.issues.addLabels({
13+ issue_number: context.issue.number,
14+ owner: context.repo.owner,
15+ repo: context.repo.repo,
16+ labels: ['Fork']
17+ })
Original file line number Diff line number Diff line change 6868 release-type : node
6969 fork : true
7070 package-name : ${{env.ACTION_NAME}}
71- path : ${{env.ACTION_NAME}}
72- monorepo-tags : ${{env.ACTION_NAME}}
71+ bump-minor-pre-major : true
7372 command : release-pr
7473 release-please-release :
7574 runs-on : ubuntu-latest
8079 token : ${{ secrets.GITHUB_TOKEN }}
8180 release-type : node
8281 package-name : ${{env.ACTION_NAME}}
83- path : ${{env.ACTION_NAME}}
84- monorepo-tags : ${{env.ACTION_NAME}}
82+ bump-minor-pre-major : true
8583 command : github-release
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ on: [push, pull_request]
44
55jobs :
66 gcloud :
7+ if : ${{ github.event_name == 'push' || github.repository == github.event.pull_request.head.repo.full_name }}
78 name : with setup-gcloud
89 runs-on : ubuntu-latest
910 steps :
3233 run : echo '${{ steps.upload.outputs.uploaded }}'
3334
3435 b64_json :
36+ if : ${{ github.event_name == 'push' || github.repository == github.event.pull_request.head.repo.full_name }}
3537 name : with base64 json creds
3638 runs-on : ubuntu-latest
3739 steps :
5759 run : echo '${{ steps.upload.outputs.uploaded }}'
5860
5961 json :
62+ if : ${{ github.event_name == 'push' || github.repository == github.event.pull_request.head.repo.full_name }}
6063 name : with json creds
6164 runs-on : ubuntu-latest
6265 steps :
8285 run : echo '${{ steps.upload.outputs.uploaded }}'
8386
8487 mocha-it :
88+ if : ${{ github.event_name == 'push' || github.repository == github.event.pull_request.head.repo.full_name }}
8589 name : mocha integration tests
8690 runs-on : ubuntu-latest
8791 steps :
You can’t perform that action at this time.
0 commit comments