media-video/davinci-resolve: update ebuild, add maintainer #6169
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: dependencies table | |
| on: | |
| push: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| jobs: | |
| generate: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout repository code | |
| uses: actions/checkout@v7 | |
| with: | |
| ref: deps-table | |
| fetch-depth: 5 | |
| - name: Fetch gentoo-zh repo | |
| uses: actions/checkout@v7 | |
| with: | |
| ref: master | |
| path: gentoo-zh | |
| - name: Update packages relation | |
| id: update_relation | |
| shell: bash | |
| run: ./update-relation.sh | |
| - name: Push changes | |
| if: ${{ steps.update_relation.outputs.state == 'changed' }} | |
| uses: ad-m/github-push-action@master | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| branch: deps-table | |
| force: true |