Skip to content

Dockerfile & Reana

Dockerfile & Reana #97

Workflow file for this run

name: ⚙️ Manage Issues
on:
issues:
types:
- opened
- reopened
- transferred
jobs:
label_issues:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- run: gh issue edit "$NUMBER" --add-label "$LABELS"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.issue.number }}
LABELS: "Client"
add-to-project:
name: Add issue to project
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@v1.0.2
with:
project-url: https://github.com/orgs/fairagro/projects/14
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}