diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 49bdaab..cffc0f4 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -13,7 +13,7 @@ jobs: - name: Create Pull Request uses: ./ env: - GITHUB_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }} + REPO_ACCESS_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }} COMMIT_MESSAGE: Add report file PULL_REQUEST_BODY: This PR is auto-generated by [create-pull-request](https://github.com/peter-evans/create-pull-request). PULL_REQUEST_BRANCH: test-patches diff --git a/create-pull-request.py b/create-pull-request.py index 9ef108e..a7b6a87 100755 --- a/create-pull-request.py +++ b/create-pull-request.py @@ -70,7 +70,7 @@ def create_pull_request(token, repo, head, base, title, body): def process_event(github_event, repo, branch, base): # Fetch required environment variables - github_token = os.environ['GITHUB_TOKEN'] + repo_access_token = os.environ['REPO_ACCESS_TOKEN'] github_repository = os.environ['GITHUB_REPOSITORY'] # Fetch remaining optional environment variables commit_message = os.getenv( @@ -88,7 +88,7 @@ def process_event(github_event, repo, branch, base): # Set git configuration set_git_config(repo.git, author_email, author_name) # Update URL for the 'origin' remote - set_git_remote_url(repo.git, github_token, github_repository) + set_git_remote_url(repo.git, repo_access_token, github_repository) # Commit the repository changes print("Committing changes.") @@ -98,7 +98,7 @@ def process_event(github_event, repo, branch, base): # Create the pull request print("Creating a request to pull %s into %s." % (branch, base)) pull_request = create_pull_request( - github_token, + repo_access_token, github_repository, branch, base,