Procesare cerere de licență #75
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: Procesare cerere de licență | |
| on: | |
| issues: | |
| types: [opened] | |
| jobs: | |
| dispatch: | |
| if: contains(github.event.issue.labels.*.name, 'licență') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trimite la procesare | |
| uses: peter-evans/repository-dispatch@v3 | |
| with: | |
| token: ${{ secrets.HUBINTELIGENT_PAT }} | |
| repository: cnecrea/automation | |
| event-type: cerere-licenta | |
| client-payload: | | |
| { | |
| "repo_owner": "${{ github.repository_owner }}", | |
| "repo_name": "${{ github.event.repository.name }}", | |
| "issue_number": ${{ github.event.issue.number }}, | |
| "issue_title": ${{ toJSON(github.event.issue.title) }}, | |
| "issue_author": "${{ github.event.issue.user.login }}", | |
| "issue_body": ${{ toJSON(github.event.issue.body) }} | |
| } |