Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/context.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name : Context Examples

on: ['push']

jobs:
my-Context:
runs-on: ubuntu-latest
steps:
- name: "My step"
run: |
echo "Hello. $MY_ACTION"
echo "Actor! $MY_ACTOR"
env:
MY_ACTION: ${{ github.action }}
MY_ACTOR: ${{ github.actor}}
15 changes: 0 additions & 15 deletions .github/workflows/custom-action.yml

This file was deleted.

12 changes: 12 additions & 0 deletions .github/workflows/workflow-commands.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: "Workflow commands"

on: ['push']

jobs:
my-job:
runs-on: ubuntu-latest
steps:
- name: "group logging"
run: |
echo "msg1"
echo "msg2"
1 change: 0 additions & 1 deletion github-actions/templates/greetings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ jobs:
issues: write
pull-requests: write
steps:
# https://github.com/actions/first-interaction
- uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down