Skip to content

Add contact email field to badge submission templates for updates #18

Add contact email field to badge submission templates for updates

Add contact email field to badge submission templates for updates #18

Workflow file for this run

name: Hello World Workflow
on:
push:
branches: [main, develop]
workflow_dispatch:
jobs:
hello:
name: Say Hello
runs-on: ubuntu-latest
steps:
- name: Print hello message
run: echo "🎉 Hello from GitHub Actions!"
- name: Print current time
run: date
- name: Print runner information
run: |
echo "Runner OS: ${{ runner.os }}"
echo "Runner Arch: ${{ runner.arch }}"
echo "GitHub SHA: ${{ github.sha }}"
echo "GitHub Ref: ${{ github.ref }}"
echo "Actor: ${{ github.actor }}"
- name: Check out code
uses: actions/checkout@v3
- name: List files
run: ls -la
- name: Print success message
run: echo "✅ Workflow completed successfully!"