diff --git a/.github/workflows/context.yml b/.github/workflows/context.yml new file mode 100644 index 000000000..6a6348ced --- /dev/null +++ b/.github/workflows/context.yml @@ -0,0 +1,23 @@ +name: Context Example Workflow + +on: [push] + +jobs: + example-job: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Print GitHub context + run: "echo \"Repository: ${{ github.repository }}\"" + + - name: Print Job context + run: "echo \"Job ID: ${{ github.run_id }}\"" + + - name: Print Runner context + run: "echo \"Runner OS: ${{ runner.os }}\"" + + - name: Print Secrets context + run: "echo \"Secret Token: ${{ secrets.GITHUB_TOKEN }}\"" \ No newline at end of file diff --git a/.github/workflows/custom-action.yml b/.github/workflows/custom-action.yml deleted file mode 100644 index 7a87b53f1..000000000 --- a/.github/workflows/custom-action.yml +++ /dev/null @@ -1,15 +0,0 @@ -on: [push] - -jobs: - my-job: - runs-on: ubuntu-latest - name: A job to say hello - steps: - - name: Hello world action step - id: hello - uses: omenking/barsoom@0.0.6 - with: - name: 'Brown' - # Use the output from the `hello` step - - name: Get the Output - run: echo "The time was ${{ steps.hello.outputs.greeting }}" \ No newline at end of file diff --git a/README.md b/README.md index 43fc9143d..d6c276977 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # Github-Examples A repo containing GitHub for programmatic examples + +## This is to check if it can trigger my workflow \ No newline at end of file