mirror of
https://github.com/maxgoedjen/secretive.git
synced 2025-05-10 04:57:22 +00:00
* Bump actions/add-to-project to v1.0.1 This _might_ address the failed workflow runs dating back to at least the last six months: https://github.com/maxgoedjen/secretive/actions/workflows/add-to-project.yml * Bump actions/upload-artifact to v4 This should get rid of the deprecation notices displayed as annotations beneath each Nightly job run. See: https://github.com/maxgoedjen/secretive/actions/runs/9461831554 * Bump actions/upload-artifact to v4 Similar to cf25db6, this should silence some deprecation notices.
17 lines
352 B
YAML
17 lines
352 B
YAML
name: Add bugs to bugs project
|
|
|
|
on:
|
|
issues:
|
|
types:
|
|
- opened
|
|
|
|
jobs:
|
|
add-to-project:
|
|
name: Add issue to project
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/add-to-project@v1.0.1
|
|
with:
|
|
project-url: https://github.com/users/maxgoedjen/projects/1
|
|
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
|