Rename roam _preview_window.json to roam_preview_window.json #2130
Workflow file for this run
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: Comment on PRs | |
on: | |
pull_request_target: | |
branches: | |
- main | |
paths: | |
- 'extensions/*/*.json' | |
jobs: | |
comment: | |
runs-on: ubuntu-20.04 | |
steps: | |
- run: | | |
echo "JAVA_HOME=$JAVA_HOME_17_X64" >> $GITHUB_ENV | |
echo "$JAVA_HOME_17_X64/bin" >> $GITHUB_PATH | |
- run: | | |
curl -sLO https://download.clojure.org/install/linux-install-1.11.1.1113.sh | |
chmod +x linux-install-1.11.1.1113.sh | |
sudo ./linux-install-1.11.1.1113.sh | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- run: clojure -P | |
name: Fetch deps | |
- name: Add comment to PR | |
env: | |
PR: ${{ github.event.pull_request.number }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
./script/comment.sh --pr $PR --token $GITHUB_TOKEN |