This repository was archived by the owner on Aug 4, 2026. It is now read-only.
chore(deps): bump form-data in /smart_contracts #104
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
| # This workflow automatically copies labels from linked issues to pull requests. | |
| # Reference: https://github.com/marketplace/actions/copy-issue-labels | |
| name: Copy Issue Labels to PR | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| on: | |
| pull_request: | |
| types: [opened, reopened, edited, synchronize] | |
| jobs: | |
| copy-labels: | |
| runs-on: ubuntu-latest | |
| name: Copy labels from linked issues | |
| steps: | |
| - name: copy-labels | |
| uses: michalvankodev/copy-issue-labels@v1.3.0 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} |