Feed the next streams update site repository with the contents of M1 / M2 / RC1 / RC2 prior to release #13765
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 will check for Maven projects if the licenses of all (transitive) dependencies are vetted. | |
| name: License vetting status check | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| - 'R*_maintenance' | |
| pull_request: | |
| branches: | |
| - 'master' | |
| - 'R*_maintenance' | |
| issue_comment: | |
| types: [created] | |
| jobs: | |
| call-license-check: | |
| permissions: | |
| pull-requests: write | |
| uses: eclipse-dash/dash-licenses/.github/workflows/mavenLicenseCheck.yml@master | |
| with: | |
| projectId: eclipse.platform | |
| submodules: recursive | |
| secrets: | |
| gitlabAPIToken: ${{ secrets.ECLIPSE_GITLAB_API_TOKEN }} |