Skip to content

Commit

Permalink
Let's try that
Browse files Browse the repository at this point in the history
  • Loading branch information
malfet committed Mar 2, 2023
1 parent 60d2a5e commit 012e305
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/hello.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ jobs:
name: "Print Hello"
runs-on: ubuntu-latest
env:
TITLE: ${{ github.event.pull_request.title }}
BODY: ${{ github.event.pull_request.body }}
LABELS: ${{ github.pull_request.labels }}
REF_TYPE: ${{ github.ref_type }}
LIMIT: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref_name }}-${{ github.ref_type == 'branch' && github.sha}}
steps:
Expand All @@ -23,10 +26,12 @@ jobs:
if: ${{ github.event_name == 'push' && github.event.ref == 'refs/heads/foobar' }}
run: echo "Hello on push ${{ github.event.ref }}"

- name: Install buck
run: |
sudo apt update -q
wget -q https://github.com/facebook/buck/releases/download/v2021.01.12.01/buck.2021.01.12.01_all.deb
sudo apt install ./buck.2021.01.12.01_all.deb
- name: Checkout repo
uses: actions/checkout@v2

- name: Show files changed
run: |
set -ex
git log
git diff-tree HEAD
git diff

0 comments on commit 012e305

Please sign in to comment.