Skip to content

Commit

Permalink
restructure
Browse files Browse the repository at this point in the history
  • Loading branch information
coderPaddyS committed Jan 14, 2023
1 parent b268e17 commit 9d080fd
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:

jobs:
latest_release:
uses: ./.github/workflows/version/latest.yml
uses: ./.github/workflows/latest_version.yml
secrets:
token: ${{ secrets.token }}

Expand Down
File renamed without changes.
8 changes: 4 additions & 4 deletions .github/workflows/create_release_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ jobs:

next_version:
if: ${{ contains(github.event.pull_request.labels.*.name, 'Release') }}
uses: ./.github/workflows/version/next.yml
uses: ./.github/workflows/next_version.yml
secrets:
token: ${{ secrets.GITHUB_TOKEN }}

app_version_check:
if: ${{ contains(github.event.pull_request.labels.*.name, 'Release') }}
uses: ./.github/workflows/release/app_version_check.yml
uses: ./.github/workflows/app_version_check.yml
with:
ref: ${{ github.event.pull_request.head.ref }}
secrets:
token: ${{ secrets.GITHUB_TOKEN }}

sdk_version_check:
if: ${{ contains(github.event.pull_request.labels.*.name, 'Release') }}
uses: ./.github/workflows/release/app_sdk_check.yml
uses: ./.github/workflows/app_sdk_check.yml
with:
ref: ${{ github.event.pull_request.head.ref }}
minTargetSdkVersion: ${{ vars.MIN_TARGET_SDK }}
Expand All @@ -30,7 +30,7 @@ jobs:

changelog:
if: ${{ contains(github.event.pull_request.labels.*.name, 'Release') }}
uses: ./.github/workflows/release/changelog.yml
uses: ./.github/workflows/changelog.yml
needs: next_version
with:
ref: ${{ github.event.pull_request.head.ref }}
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
version:
uses: ./.github/workflows/version/latest.yml
uses: ./.github/workflows/latest_version.yml
secrets:
token: ${{ secrets.token }}

Expand Down

0 comments on commit 9d080fd

Please sign in to comment.