yurake/k8s-3tier-webapp

View on GitHub
.github/workflows/issue_opened.yml

Summary

Maintainability
Test Coverage
name: Assign issues to project

on:
  issues:
    types: [opened]
  pull_request:
    types: [opened]
env:
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

jobs:
  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/users/yurake/projects/1/views/1
          github-token: ${{ secrets.GITHUB_TOKEN }}