Skip to content

Merge branch 'rds-upgrade-docs' of https://github.com/raft-tech/TANF-… #2735

Merge branch 'rds-upgrade-docs' of https://github.com/raft-tech/TANF-…

Merge branch 'rds-upgrade-docs' of https://github.com/raft-tech/TANF-… #2735

Workflow file for this run

###########################################################################
# GitHub Action Workflow
# On push to any branch, triggers the back end build and test pipeline
# if the tdrs-backend has changed.
#
# Step 0: make changes on your branch to non-documentation files in
# tdrs-backend and push changes to your remote branch
#
# Step 1: Makes a request to the V2 CircleCI API to initiate the project,
# which will filter based upon build_and_test_backend
# to run the workflow/jobs listed here:
# build-and-test:[
# test-backend,
# test-e2e
# ]
#
# Leverages the open source GitHub Action:
# https://github.com/promiseofcake/circleci-trigger-action
###########################################################################
name: Build Only Backend When tdrs-backend/ Files Change
on:
push:
paths: 'tdrs-backend/**'
branches-ignore:
- develop
- main
- master
jobs:
build_and_test_backend:
runs-on: ubuntu-latest
name: Build and Test Backend
steps:
- uses: actions/checkout@v2
- name: Circle CI Deployment Trigger
id: curl-circle-ci
uses: promiseofcake/circleci-trigger-action@v1
with:
user-token: ${{ secrets.CIRCLE_CI_V2_TOKEN }}
project-slug: ${{ github.repository }}
branch: ${{ github.ref_name }}
payload: '{
"build_and_test_backend": true,
"triggered": true
}'