We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f8ed0a commit d3fe921Copy full SHA for d3fe921
.github/workflows/update-submodule-template.yml
@@ -27,7 +27,7 @@ jobs:
27
const response = await github.rest.repos.getContent({
28
owner: 'hubspotdev',
29
repo: 'CODE-Hub',
30
- path: '.github/pull_request_template.md',
+ path: 'PR-Template.md',
31
ref: 'main'
32
});
33
@@ -46,8 +46,11 @@ jobs:
46
47
48
49
- path: 'Bug-Issue-Template.md',
50
- ref: 'main'
+ ref: 'main',
51
+ headers: {
52
+ Authorization: `token ${{ secrets.GITHUB_TOKEN }}`
53
+ }
54
55
56
const content = Buffer.from(response.data.content, 'base64').toString();
0 commit comments