Skip to content

Update status.yml

Update status.yml #140

Workflow file for this run

name: Echo on PR
on:
pull_request:
types: [opened]
push:
jobs:
call-reusable-workflow:
uses: galipremsagar/test-actions/.github/workflows/echo_workflow.yml@main

Check failure on line 10 in .github/workflows/copy.yml

View workflow run for this annotation

GitHub Actions / Echo on PR

Invalid workflow file

The workflow is not valid. In .github/workflows/copy.yml (Line: 10, Col: 11): Error from called workflow galipremsagar/test-actions/.github/workflows/echo_workflow.yml@main (Line: 7, Col: 9): Required property is missing: type
with:
python-version: '3.x'
# 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/
# abc2