Skip to content

Commit

Permalink
Updating docs
Browse files Browse the repository at this point in the history
  • Loading branch information
MZole committed Jul 5, 2022
1 parent 167ed3f commit 3b89487
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/verify-this-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
10 changes: 5 additions & 5 deletions Docs/Workflows.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Reusable GitHub Actions workflows
# Reusable GitHub Actions workflows



Expand Down Expand Up @@ -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 }}
```
Expand All @@ -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
Expand All @@ -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.
Refer to [Github Actions reusable workflows](https://docs.github.com/en/actions/learn-github-actions/reusing-workflows#overview) for more information.

0 comments on commit 3b89487

Please sign in to comment.