Update deprecated github actions to latest version #802
This file contains 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
# Add Che link on PRs | |
name: Che | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
# Only allow one job of this action to be ran at a time | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
add-link: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Eclipse Che Pull Request Check | |
id: che-pr-check-gh-action | |
uses: benoitf/che-pr-check-gh-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |