Update local Grafana Dashboard #19
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
# This is a basic workflow adding every issue in this repo to the new Project Management Board | |
name: Add Issue To Project | |
# Controls when the workflow will run - new issues | |
on: | |
issues: | |
types: | |
- opened | |
# This workflow contains a single job called "build" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
# Steps | |
steps: | |
- name: Add Issue To Project | |
uses: actions/[email protected] | |
with: | |
# URL of the project to add issues to | |
project-url: https://github.com/orgs/ObolNetwork/projects/7 | |
# A GitHub personal access token with write access to the project, need org admin's token with repo and project permissions, need to store the token outside the script if public | |
github-token: ${{ secrets.GH_ORG_ADMIN_SECRET }} |