Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
neilmca-inc committed Aug 25, 2024
1 parent ee86e88 commit b8ac094
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/github-actions-demo.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: GitHub Actions Demo
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
on: [push]
on:
#[push]
pull_request:
branches: [ "main" ]
jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/repo-vars-secrets.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: GitHub Actions Repo Vars and Secrets
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
on:
[push]

jobs:
Explore-GitHub-Actions-Var-Secrets:
runs-on: ubuntu-latest
steps:
- name: one
run: echo "Repo Secret REPO_SECRET_MINOGUE: ${{ secret.REPO_SECRET_MINOGUE }}"
- name: two
run: echo "Repo Variable REPO_VAR_MINOGUE: ${{ vars.REPO_VAR_MINOGUE }}"


0 comments on commit b8ac094

Please sign in to comment.