fix: replace relative import paths with remapping paths #56
Workflow file for this run
This file contains hidden or 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
| ###################################################################################### | |
| # READ THIS FIRST | |
| # This file is authored in FilOzone/github-mgmt repository and MANUALLY copied to other repos. | |
| # See https://github.com/FilOzone/github-mgmt/blob/master/files/workflows/add-issues-and-prs-to-fs-project-board.yml for more info. | |
| ###################################################################################### | |
| # This action adds all issues and PRs to the FS project board. | |
| # It is used to keep the project board up to date with the issues and PRs. | |
| # It is triggered by the issue and PR events. | |
| # It assumes a `FILOZZY_CI_ADD_TO_PROJECT` secret is set in the repo. | |
| # This secret should have the permissions outlined in https://github.com/actions/add-to-project?tab=readme-ov-file#creating-a-pat-and-adding-it-to-your-repository | |
| name: Add issues and PRs to FS project board | |
| on: | |
| issues: | |
| types: | |
| - opened | |
| pull_request: | |
| types: | |
| - opened | |
| jobs: | |
| add-to-project: | |
| name: Add all issues and prs to project | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/[email protected] | |
| with: | |
| project-url: https://github.com/orgs/FilOzone/projects/14 | |
| github-token: ${{ secrets.FILOZZY_CI_ADD_TO_PROJECT }} |