Skip to content

Commit

Permalink
workflow for CDS Test branch
Browse files Browse the repository at this point in the history
  • Loading branch information
navinkrishnan committed Mar 1, 2024
1 parent 6af9d79 commit 15bdc68
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/create-test-branch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Create CDS Test branch

on:
workflow_call:

jobs:
build:
runs-on: ubuntu-latest
name: Build and Push
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Copy xmpls
run: npm run add-all-xmpls

- name: Test
run: |
npm i
npm test
- name: Extract last commit author email and name
id: extract_commit_info
run: |
LAST_COMMIT_EMAIL=$(git log -1 --pretty=format:'%ae')
LAST_COMMIT_NAME=$(git log -1 --pretty=format:'%an')
echo "AUTHOR_EMAIL=$LAST_COMMIT_EMAIL" >> $GITHUB_ENV
echo "AUTHOR_NAME=$LAST_COMMIT_NAME" >> $GITHUB_ENV
- name: Push
run: |
git config --global user.email "${{ env.AUTHOR_EMAIL }}"
git config --global user.name "${{ env.AUTHOR_NAME }}"
# Add and commit changes locally
git add .
git commit -m "${{ github.event.head_commit.message }}"
git push --force-with-lease origin HEAD:cds-test-integrate
5 changes: 5 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,8 @@ jobs:
node-version: ${{ matrix.node-version }}
- run: npm i
- run: npm test

push:
name: Push to CDS Test branch
uses: ./.github/workflows/create-test-branch.yml
if: github.event_name == 'push'

0 comments on commit 15bdc68

Please sign in to comment.