Bumps the all group with 3 updates: [actions/dependency-review-action](https://github.com/actions/dependency-review-action), [actions/add-to-project](https://github.com/actions/add-to-project) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/dependency-review-action` from 4.1.3 to 4.2.4 - [Release notes](https://github.com/actions/dependency-review-action/releases) - [Commits](9129d7d40b...733dd5d4a5) Updates `actions/add-to-project` from 0.6.0 to 0.6.1 - [Release notes](https://github.com/actions/add-to-project/releases) - [Commits](0609a2702e...1b844f0c5a) Updates `github/codeql-action` from 3.24.7 to 3.24.9 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](3ab4101902...1b1aada464) --- updated-dependencies: - dependency-name: actions/dependency-review-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all - dependency-name: actions/add-to-project dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
19 lines
453 B
YAML
19 lines
453 B
YAML
name: Adds all issues
|
|
|
|
on:
|
|
issues:
|
|
types:
|
|
- opened
|
|
|
|
jobs:
|
|
add-to-project:
|
|
name: Add issue to project
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
repository-projects: write
|
|
issues: write
|
|
steps:
|
|
- uses: actions/add-to-project@1b844f0c5ac6446a402e0cb3693f9be5eca188c5 # v0.6.1
|
|
with:
|
|
project-url: https://github.com/orgs/kubernetes/projects/104
|
|
github-token: ${{ secrets.PROJECT_WRITER }}
|