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

NO-TICKET Update default gitops-email and gitops-user #264

Merged
merged 3 commits into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/template_gitops.yml
veerendra2 marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ on:
gitops-user:
required: false
type: string
default: "Staffbot"
default: "staffbase-actions"
gitops-email:
required: false
type: string
default: "staffbot@staffbase.com"
default: "staffbase-actions[bot]@users.noreply.github.com"
working-directory:
required: false
type: string
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
token: ${{ <your-token> }}
# optional: identifier of the GitHub App for authentication
app_id: ${{ <your-app-id> }}
# optional: private key of the GitHub App
# optional: private key of the GitHub App
private_key: ${{ <your-private-key> }}
```

Expand Down Expand Up @@ -137,9 +137,9 @@ jobs:
gitops-organization: <your-organization>
# optional: repository where to update the files, default: mops
gitops-repository: "<your-repository>"
# optional: user which does the commit, default: "Staffbot"
# optional: user which does the commit, default: "staffbase-actions"
gitops-user: "<your-user>"
# optional: email of the user which does the commit, default: "staffbot@staffbase.com"
# optional: email of the user which does the commit, default: "staffbase-actions[bot]@users.noreply.github.com"
gitops-email: "<your-email>"
# optional: files which should be updated for dev
gitops-dev: |-
Expand Down Expand Up @@ -276,7 +276,7 @@ on:
jobs:
update_release_draft:
uses: Staffbase/gha-workflows/.github/workflows/[email protected]
with:
with:
# optional: name of the release
name: Version X.Y.Z
# optional: should the release be published, default: false
Expand All @@ -290,7 +290,7 @@ jobs:
token: ${{ <your-token> }}
# optional: identifier of the GitHub App for authentication
app_id: ${{ <your-app-id> }}
# optional: private key of the GitHub App
# optional: private key of the GitHub App
private_key: ${{ <your-private-key> }}
```

Expand Down Expand Up @@ -332,9 +332,9 @@ on:
```

</details>

### Secret Scanning

<details>
<summary>This workflow should be called by a PR and will scan it's commits for leaked credentials. The workflow will fail if any results are found.</summary>

Expand Down Expand Up @@ -442,7 +442,7 @@ jobs:
secrets:
# GitHub token to be used for commenting in a PR
github-token: ${{ secrets.GITHUB_TOKEN }}
# TestIO token of a user for which the triggered test is created
# TestIO token of a user for which the triggered test is created
testio-token: ${{ secrets.TESTIO_TOKEN }}
```

Expand Down Expand Up @@ -494,7 +494,7 @@ Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduc
## License 📄

This project is licensed under the Apache-2.0 License - see the [LICENSE.md](LICENSE) file for details.

<table>
<tr>
<td>
Expand Down
Loading