Post welcome comment #34
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
name: Post welcome comment | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
[master, dev] | ||
pull_request: | ||
types: | ||
- opened | ||
#branches: | ||
# [master, dev] | ||
jobs: | ||
build: | ||
name: Post welcome comment | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- run: echo ${{ GITHUB_WORKSPACE }} | ||
Check failure on line 22 in .github/workflows/welcome.yml GitHub Actions / Post welcome commentInvalid workflow file
|
||
- name: Add link to PR | ||
#if: ${{ github.event_name == 'pull_request' }} | ||
uses: VirtoCommerce/vc-github-actions/publish-artifact-link@master | ||
with: | ||
artifactUrl: ${{ github.event_name }} | ||
repoOrg: ${{ github.repository_owner }} | ||
downloadComment: 'Artifact URL:' |