diff --git a/.github/workflows/publish.yml b/.github/workflows/publish-nuget.yml similarity index 100% rename from .github/workflows/publish.yml rename to .github/workflows/publish-nuget.yml diff --git a/.github/workflows/verify.yml b/.github/workflows/verify-submodule-pull-request.yml similarity index 100% rename from .github/workflows/verify.yml rename to .github/workflows/verify-submodule-pull-request.yml diff --git a/.github/workflows/verify-this-repo.yml b/.github/workflows/verify-this-repo.yml index d48d05587..4821ef32f 100644 --- a/.github/workflows/verify-this-repo.yml +++ b/.github/workflows/verify-this-repo.yml @@ -7,4 +7,4 @@ on: jobs: call-verify-workflow: - uses: Lombiq/GitHub-Actions/.github/workflows/verify.yml@dev + uses: Lombiq/GitHub-Actions/.github/workflows/verify-submodule-pull-request.yml@dev diff --git a/Docs/Workflows.md b/Docs/Workflows.md index d1b9b550e..2caeb518d 100644 --- a/Docs/Workflows.md +++ b/Docs/Workflows.md @@ -1,4 +1,4 @@ -# Reusable GitHub Actions workflows +# Reusable GitHub Actions workflows @@ -58,7 +58,7 @@ on: jobs: call-publish-workflow: - uses: Lombiq/GitHub-Actions/.github/workflows/publish.yml@dev + uses: Lombiq/GitHub-Actions/.github/workflows/publish-nuget.yml@dev secrets: apikey: ${{ secrets.DEFAULT_NUGET_PUBLISH_API_KEY }} ``` @@ -72,7 +72,7 @@ It takes one non-optional secret parameter, `apikey`, the organization API key f ```yaml jobs: call-publish-workflow: - uses: Lombiq/GitHub-Actions/.github/workflows/publish.yml@dev + uses: Lombiq/GitHub-Actions/.github/workflows/publish-nuget.yml@dev with: source: https://nuget.cloudsmith.io/lombiq/open-source-orchard-core-extensions/v3/index.json verbosity: detailed @@ -96,11 +96,11 @@ on: jobs: call-verify-workflow: - uses: Lombiq/GitHub-Actions/.github/workflows/verify.yml@dev + uses: Lombiq/GitHub-Actions/.github/workflows/verify-submodule-pull-request.yml@dev with: repo: Lombiq/Open-Source-Orchard-Core-Extensions ``` If this is for a submodule of [Lombiq's Open-Source Orchard Core Extensions](https://github.com/Lombiq/Open-Source-Orchard-Core-Extensions/), the `repo` input can be omitted, because the above is its default value. Otherwise, use your parent repository's address in the `{owner}/{repo_name}` format. -Refer to [Github Actions reusable workflows](https://docs.github.com/en/actions/learn-github-actions/reusing-workflows#overview) for more information. \ No newline at end of file +Refer to [Github Actions reusable workflows](https://docs.github.com/en/actions/learn-github-actions/reusing-workflows#overview) for more information.