forked from rapidsai/cudf
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (32 loc) · 921 Bytes
/
copy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Echo on PR
on:
pull_request:
types: [opened]
push:
jobs:
echo_job:
runs-on: ubuntu-latest
steps:
- name: Echo abc
run: echo 'abc'
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Generate text file
run: |
echo '{"context":"Pandas tests", "description":"90/100", "state":"success", "job_name": "${{ github.job }}"}' > gh-status.json
echo "### Hello world1! :rocket:" >> $GITHUB_STEP_SUMMARY
- name: Upload file to GitHub Artifact1
uses: actions/upload-artifact@v4
with:
name: gh-status
path: gh-status.json
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: gh-status
path: downloaded_artifacts/
# abc