Skip to content

Update export-to-serverlessland.yml #4

Update export-to-serverlessland.yml

Update export-to-serverlessland.yml #4

# Manual trigger that will Copy pattern to SLand
name: Manual Copy to SLand
on:
workflow_dispatch:
inputs:
fileName:
description: "new pattern filename"
required: true
dirName:
description: "new pattern dir"
required: true
jobs:
copy:
runs-on: ubuntu-latest
if: ${{ (github.actor == 'bls20aws') || (github.actor == 'julianwood') }}
env:
NODE_ENV: dev
fileName: ${{ inputs.fileName }}
steps:
- name: Check if user is a member of the team
uses: tspascoal/get-user-teams-membership@v2
id: checkUserMember
with:
username: ${{ github.actor }}
team: 'aws-serverless-da'
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Copycat

Check failure on line 29 in .github/workflows/export-to-serverlessland-team.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/export-to-serverlessland-team.yml

Invalid workflow file

You have an error in your yaml syntax on line 29
if: ${{ steps.checkUserMember.outputs.isTeamMember == 'true' }}
uses: andstor/copycat-action@v3
with:
personal_token: ${{ secrets.patterns_pat }}
dst_path: /submissions/patterns/
dst_owner: bls20AWS
dst_repo_name: serverless-land
dst_branch: master
src_branch: main
file_filter: "*.json"
src_path: /${{ inputs.dirName }}/${{ inputs.fileName }}