diff --git a/.github/workflows/release/app_sdk_check.yml b/.github/workflows/app_sdk_check.yml similarity index 100% rename from .github/workflows/release/app_sdk_check.yml rename to .github/workflows/app_sdk_check.yml diff --git a/.github/workflows/release/app_version_check.yml b/.github/workflows/app_version_check.yml similarity index 97% rename from .github/workflows/release/app_version_check.yml rename to .github/workflows/app_version_check.yml index 2009217..b0f062c 100644 --- a/.github/workflows/release/app_version_check.yml +++ b/.github/workflows/app_version_check.yml @@ -17,7 +17,7 @@ on: jobs: latest_release: - uses: ./.github/workflows/version/latest.yml + uses: ./.github/workflows/latest_version.yml secrets: token: ${{ secrets.token }} diff --git a/.github/workflows/release/changelog.yml b/.github/workflows/changelog.yml similarity index 100% rename from .github/workflows/release/changelog.yml rename to .github/workflows/changelog.yml diff --git a/.github/workflows/create_release_pr.yml b/.github/workflows/create_release_pr.yml index f0d5954..936be9d 100644 --- a/.github/workflows/create_release_pr.yml +++ b/.github/workflows/create_release_pr.yml @@ -7,13 +7,13 @@ 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: @@ -21,7 +21,7 @@ jobs: 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 }} @@ -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 }} diff --git a/.github/workflows/version/latest.yml "b/.github/workflows/latest\313\215version.yml" similarity index 100% rename from .github/workflows/version/latest.yml rename to ".github/workflows/latest\313\215version.yml" diff --git a/.github/workflows/version/next.yml b/.github/workflows/next_version.yml similarity index 95% rename from .github/workflows/version/next.yml rename to .github/workflows/next_version.yml index 035cb0a..47f91f7 100644 --- a/.github/workflows/version/next.yml +++ b/.github/workflows/next_version.yml @@ -12,7 +12,7 @@ on: jobs: version: - uses: ./.github/workflows/version/latest.yml + uses: ./.github/workflows/latest_version.yml secrets: token: ${{ secrets.token }}