Add Meet the sponsors Shiguredo post #43
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
| name: "Mix Dependency Submission" | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| pull_request: {} | |
| # The API requires write permission on the repository to submit dependencies | |
| permissions: | |
| contents: write | |
| jobs: | |
| report_mix_deps: | |
| name: "Report Mix Dependencies" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: erlef/mix-dependency-submission@v1 | |
| with: | |
| install-deps: true | |
| - uses: actions/dependency-review-action@v4 | |
| if: "${{ github.event_name == 'pull_request' }}" |