Skip to content

Commit

Permalink
change token config on action
Browse files Browse the repository at this point in the history
  • Loading branch information
enridaga committed Oct 17, 2023
1 parent 7c3cf2a commit d3beb84
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/reeco_initialize.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,15 @@ jobs:
id: check_if_issue_exists
with:
repo: ${{ github.event.repository.name }}
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ github.token }}
title: missing repositories.txt
labels: bug

- name: repositories.txt and issue do not exist, create an issue
if: steps.check_files.outputs.files_exists == 'false' && steps.check_if_issue_exists.outputs.exists == 'false'
uses: JasonEtco/create-an-issue@v2
env:
GITHUB_TOKEN: ${{ secrets.MY_TOKEN }}
GITHUB_TOKEN: ${{ github.token }}
with:
filename: .github/initialize.md

Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
- name: commit and push report
uses: Andro999b/[email protected]
with:
github_token: ${{ secrets.MY_TOKEN }}
github_token: ${{ github.token }}
branch: main
force: true
message: new report - ${{ steps.date.outputs.date }}
Expand All @@ -127,7 +127,7 @@ jobs:
- name: commit and push report
uses: Andro999b/[email protected]
with:
github_token: ${{ secrets.MY_TOKEN }}
github_token: ${{ github.token }}
branch: main
force: true
message: new release report - ${{ steps.date.outputs.date }}
Expand Down

0 comments on commit d3beb84

Please sign in to comment.