chore(deps): bump traefik::devops-stack-module-traefik from 9.0.1 to 9.0.2 in /examples/eks #404
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# GitHub Actions workflow to automatically push PRs and issues to the DevOps Stack project board. | |
# | |
# IMPORTANT: This workflow is called by other workflows in our DevOps Stack repositories and it is centralized here in | |
# order to be easily maintained across modules. Because of this, please make sure you're not introducing any breaking | |
# changes when modifying this workflow. | |
name: "pr-issues-project" | |
on: | |
workflow_call: | |
secrets: | |
PROJECT_APP_PRIVATE_KEY: | |
description: "GitHub App private key for the DevOps Stack Project app" | |
required: true | |
issues: | |
types: | |
- opened | |
- reopened | |
pull_request: | |
types: | |
- opened | |
- reopened | |
jobs: | |
add-to-project: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Generate authentication token from GitHub App | |
id: generate_token | |
uses: tibdex/github-app-token@v2 | |
with: | |
app_id: 322306 | |
private_key: ${{ secrets.PROJECT_APP_PRIVATE_KEY }} | |
- name: Add PR or issue to DevOps Stack project board | |
uses: actions/add-to-project@v1.0.2 | |
with: | |
project-url: https://github.com/orgs/camptocamp/projects/3/ | |
github-token: ${{ steps.generate_token.outputs.token }} |