Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ jobs:
steps:
- name: git checkout
uses: actions/checkout@v4
- name: Token generator
uses: githubofkrishnadhas/github-access-using-githubapp@v2
id: token-generation
with:
github_app_id: ${{ secrets.TOKEN_GENERATOR_APPID }}
github_app_private_key: ${{ secrets.TOKEN_GENERATOR_PRIVATE_KEY }}
- name: set up python 3.11
uses: actions/setup-python@v4
with:
Expand All @@ -26,7 +32,7 @@ jobs:
poetry install
- name: execute python program
env:
GH_TOKEN: ${{ secrets.DEVWITHKRISHNA_PERSONAL_ACCESS_TOKEN }}
GH_TOKEN: ${{ steps.token-generation.outputs.token }}
ORGANIZATION: 'devwithkrishna'
run: |
poetry run python3 create_new_labels.py
Expand Down