Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

📝 Update Readme Versions #195

Merged
merged 1 commit into from
Nov 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:

jobs:
<action name>:
uses: Staffbase/gha-workflows/.github/workflows/template_*.yml@v3.1.0
uses: Staffbase/gha-workflows/.github/workflows/template_*.yml@v3.2.0
with:
...
```
Expand Down Expand Up @@ -43,7 +43,7 @@ permissions:

jobs:
dependabot:
uses: Staffbase/gha-workflows/.github/workflows/template_automerge_dependabot.yml@v3.1.0
uses: Staffbase/gha-workflows/.github/workflows/template_automerge_dependabot.yml@v3.2.0
```

Or you can use a specific GitHub app id and private key to generate a new token which can be used for the action.
Expand All @@ -55,7 +55,7 @@ on: pull_request

jobs:
dependabot:
uses: Staffbase/gha-workflows/.github/workflows/template_automerge_dependabot.yml@v3.1.0
uses: Staffbase/gha-workflows/.github/workflows/template_automerge_dependabot.yml@v3.2.0
secrets:
# optional: identifier of the GitHub App for authentication
app_id: ${{ <your-app-id> }}
Expand All @@ -81,7 +81,7 @@ on:

jobs:
autodev:
uses: Staffbase/gha-workflows/.github/workflows/template_autodev.yml@v3.1.0
uses: Staffbase/gha-workflows/.github/workflows/template_autodev.yml@v3.2.0
with:
# optional: base branch from which the history originates, default: main
base: master
Expand Down Expand Up @@ -122,7 +122,7 @@ on: [ push ]

jobs:
gitops:
uses: Staffbase/gha-workflows/.github/workflows/template_gitops.yml@v3.1.0
uses: Staffbase/gha-workflows/.github/workflows/template_gitops.yml@v3.2.0
with:
# optional: list of build-time variables
docker-build-args: |
Expand Down Expand Up @@ -178,7 +178,7 @@ on:

jobs:
jira_annotate:
uses: Staffbase/gha-workflows/.github/workflows/template_jira_tagging.yml@v3.1.0
uses: Staffbase/gha-workflows/.github/workflows/template_jira_tagging.yml@v3.2.0
with:
# optional: name of the service to add as label, default: name of the repository
name: 'component name'
Expand Down Expand Up @@ -210,7 +210,7 @@ on:

jobs:
ld_code_references:
uses: Staffbase/gha-workflows/.github/workflows/template_launchdarkly_code_references.yml@v3.1.0
uses: Staffbase/gha-workflows/.github/workflows/template_launchdarkly_code_references.yml@v3.2.0
with:
# optional: key of the LD project, default: default
project-key: 'my-project'
Expand Down Expand Up @@ -238,7 +238,7 @@ on:

jobs:
update_release_draft:
uses: Staffbase/gha-workflows/.github/workflows/template_release_drafter.yml@v3.1.0
uses: Staffbase/gha-workflows/.github/workflows/template_release_drafter.yml@v3.2.0
with:
# optional: name of the release
name: Version X.Y.Z
Expand Down Expand Up @@ -269,7 +269,7 @@ on:

jobs:
new_version:
uses: Staffbase/gha-workflows/.github/workflows/template_release_version.yml@v3.1.0
uses: Staffbase/gha-workflows/.github/workflows/template_release_version.yml@v3.2.0
```

You could use the action in combination with the reusable release drafter.
Expand All @@ -296,7 +296,7 @@ on: [pull_request]

jobs:
trufflehog:
uses: Staffbase/gha-workflows/.github/workflows/template_secret_scan.yml@v3.1.0
uses: Staffbase/gha-workflows/.github/workflows/template_secret_scan.yml@v3.2.0
```
</details>

Expand All @@ -314,7 +314,7 @@ on:

jobs:
stale:
uses: Staffbase/gha-workflows/.github/workflows/template_stale.yml@v3.1.0
uses: Staffbase/gha-workflows/.github/workflows/template_stale.yml@v3.2.0
with:
# optional: comment on the stale pull request while closed, default: This stale PR was closed because there was no activity.
close-pr-message: your message
Expand Down Expand Up @@ -350,7 +350,7 @@ on:

jobs:
techdocs:
uses: Staffbase/gha-workflows/.github/workflows/template_techdocs.yml@v3.1.0
uses: Staffbase/gha-workflows/.github/workflows/template_techdocs.yml@v3.2.0
with:
# optional: kind of the Backstage entity, default: Component
# ref: https://backstage.io/docs/features/software-catalog/descriptor-format#contents
Expand Down Expand Up @@ -381,7 +381,7 @@ on:

jobs:
trigger-testio-test:
uses: Staffbase/gha-workflows/.github/workflows/template_testio_trigger_test.yml@v3.1.0
uses: Staffbase/gha-workflows/.github/workflows/template_testio_trigger_test.yml@v3.2.0
with:
# optional: the slug you received from TestIO, defaults to 'staffbase'
testio-slug: your TestIO slug
Expand Down Expand Up @@ -413,7 +413,7 @@ on:

jobs:
yamllint:
uses: Staffbase/gha-workflows/.github/workflows/template_yaml.yml@v3.1.0
uses: Staffbase/gha-workflows/.github/workflows/template_yaml.yml@v3.2.0
with:
# optional: name of the running action, default: yamllint / yamllint
action-name: your name
Expand Down