Skip to content

Commit

Permalink
Add dummy mappy action
Browse files Browse the repository at this point in the history
  • Loading branch information
bartgol committed Sep 13, 2024
1 parent 56e881c commit 9faa005
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/at2-testing-hello-mappy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: mappy hello world

on:
# Runs every time a PR is open against master
pull_request:
branches: [ master ]
types: [opened, synchronize, labeled, ready_for_review, reopened]
workflow_dispatch:

jobs:
hello-mappy:
if: ${{ github.event.repository.name == 'scream' }}
runs-on: [self-hosted, mappy]

steps:
- name: Check out the repository
uses: actions/checkout@v4
with:
persist-credentials: false
show-progress: false
- name: Show action trigger
run: |
echo "= The job was automatically triggered by a ${{github.event_name}} event."
- name: greet the world
run: echo "hello world"
- name: list mods
run: module list

0 comments on commit 9faa005

Please sign in to comment.