Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
name: PR Workflow
# If any dependent jobs fails, this WF skips which won't block merging PRs
# calling always() is required for this WF to run all the time
if: github.repository_owner == 'aws' && always()
if: github.repository_owner == 'valerena' && always()
runs-on: ubuntu-latest
needs:
- make-pr
Expand All @@ -45,7 +45,7 @@ jobs:

make-pr:
name: make pr / ${{ matrix.os }} / ${{ matrix.python }}
if: github.repository_owner == 'aws'
if: github.repository_owner == 'valerena'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:

validate-schema:
name: Validate JSON schema
if: github.repository_owner == 'aws'
if: github.repository_owner == 'valerena'
permissions:
pull-requests: write
contents: write
Expand All @@ -96,7 +96,7 @@ jobs:

integration-tests:
name: Integ / ${{ matrix.os }} / ${{ matrix.python }} / ${{ matrix.tests_config.name }}
if: github.repository_owner == 'aws'
if: github.repository_owner == 'valerena'
runs-on: ${{ matrix.os }}
env:
AWS_DEFAULT_REGION: us-east-1
Expand Down Expand Up @@ -160,7 +160,8 @@ jobs:
- uses: actions/setup-go@v6
with:
go-version: '1.19'
- uses: ruby/setup-ruby@v1
# Pin to specific version until Lambda Builders support bundler 4.0.0
- uses: ruby/setup-ruby@v1.268.0
with:
ruby-version: "3.3"
- uses: actions/setup-node@v6
Expand Down Expand Up @@ -197,7 +198,7 @@ jobs:

smoke-and-functional-tests:
name: ${{ matrix.tests_config.name }} / ${{ matrix.tests_config.os }} / ${{ matrix.python }}
if: github.repository_owner == 'aws'
if: github.repository_owner == 'valerena'
runs-on: ${{ matrix.tests_config.os }}
env:
AWS_DEFAULT_REGION: us-east-1
Expand Down Expand Up @@ -249,7 +250,7 @@ jobs:

docker-disabled:
name: Docker-disabled Tests / ${{ matrix.os }}
if: github.repository_owner == 'aws'
if: github.repository_owner == 'valerena'
runs-on: ${{ matrix.os }}
env:
SAM_CLI_DEV: "1"
Expand Down
Loading