Skip to content

Update copy.yml

Update copy.yml #8

Workflow file for this run

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@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Generate text file
run: |
echo "Hello, Worlaaad!" > hello.txt
- name: Upload file to GitHub Artifact
uses: actions/upload-artifact@v3
with:
name: gh-comment
path: hello.txt
# abc