chore(ghactions): Fix cache in workflow #61
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
name: Move new issues into Project Board Column | |
on: | |
pull_request: | |
types: [ closed ] | |
jobs: | |
move-issue-to-repository-project-column-on-pull-request: | |
name: Move issues to repository project column | |
runs-on: ubuntu-latest | |
steps: | |
- name: Move all issues related to current PR(into main branch) and child PRs to 'Done' column | |
uses: fojia/action-move-issues-to-column@master | |
with: | |
project: '4minitz' | |
column: 'Done' | |
owner: 'bubonicfred' | |
repo: ${{ github.repository }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: main |