We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a38f97 commit c784f95Copy full SHA for c784f95
1 file changed
action.yml
@@ -35,6 +35,14 @@ runs:
35
GITHUB_HEAD="HEAD:refs/heads/fix-text-${HEAD_REF}"
36
git push -f "${REPO_URL}" "${GITHUB_HEAD}"
37
shell: bash
38
+ - name: Set org name
39
+ uses: actions/github-script@v6.1.0
40
+ if: env.REPO_NAME == github.repository
41
+ id: set_org_name
42
+ with:
43
+ github-token: ${{input.github-token}}
44
+ result-encoding: string
45
+ script: return process.env.GITHUB_REPOSITORY.split('/')[0]
46
- name: Get PullRequests
47
uses: actions/github-script@v6.1.0
48
env:
0 commit comments