Skip to content

Commit

Permalink
creating issue
Browse files Browse the repository at this point in the history
  • Loading branch information
GJS2162 committed Oct 15, 2022
1 parent 0316b4d commit f4e2ce1
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 13 deletions.
32 changes: 19 additions & 13 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,29 @@
name: Action Workflow

on:
repository_dispatch:
types: [build]
# schedule:
# - cron: "0/5 * * * *"
# - cron: "0/6 * * * *"
# push:
on:
push:
branches:
- master
- feature/*
- feature/**
- "!feature/feactC"
tags:
- v1.*
paths:
- "**.js"
- "!filename.js"
pull_request:
types: [closed , opened , reopened , assigned]


types:
- closed
- opened
- reopened
- assigned
jobs:
run-github-actions:
runs-on: ubuntu-latest
steps:
- name: payload
run: echo ${{ github.event.client_payload.env }}
- name : List Files
- name: List Files
run: |
pwd
ls -a
Expand All @@ -27,7 +33,7 @@ jobs:
echo "${{github.token}}"
- name: checkout
uses: actions/checkout@v3
- name : List Files after checkout
- name: List Files after checkout
run: |
pwd
ls -a
Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/matrix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Matrix

on: push

jobs:
node-version:
runs-on: ubuntu-latest
steps:
- name: Log node version
run: node -v
- uses: actions/setup-node@v3
with:
node-version: 6
- name: Log node version
run: node -v




0 comments on commit f4e2ce1

Please sign in to comment.