Skip to content

Commit

Permalink
Update check_version.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
BirjuVachhani authored Jan 5, 2024
1 parent 9d0599b commit 8f4f354
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/check_version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ on:
workflow_dispatch:

jobs:
check:
check-version:
id: check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -39,6 +40,12 @@ jobs:
- name: print update
run: |
echo "Should Update: ${{ env.update }}"
- name: Trigger Update
- name: Set Job Output
run: echo "update=${{ env.update }}" >> "$GITHUB_OUTPUT"
- name: Trigger Repository Update
if: ${{ env.update == 'true' }}
uses: ${{ github.repository }}/.github/workflows/update_repo.yml@main
uses: codelessly/codelessly-test-app/.github/workflows/update_repo.yml@main
with:
secrets:
CODELESSLY_PROJECT_CONFIG: ${{ secrets.CODELESSLY_PROJECT_CONFIG }}
CODELESSLY_APP_ACCESS_TOKEN: ${{ secrets.CODELESSLY_APP_ACCESS_TOKEN }}

0 comments on commit 8f4f354

Please sign in to comment.