Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CircleCI to Github actions migration for Kedro-Viz (test) #1846

Merged
merged 24 commits into from
Apr 22, 2024
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
7867912
CircleCI to Github actions migration for test
jitu5 Apr 5, 2024
db418b2
trufflehog-ignore updated
jitu5 Apr 5, 2024
ed92744
matrix for js removed
jitu5 Apr 9, 2024
94606c5
Matrix removed for js in frontend
jitu5 Apr 9, 2024
b58e8b6
Merge branch 'main' into feature/gha-test
jitu5 Apr 9, 2024
4a9ff80
build-frontend workflow merged with js-lint-test workflow
jitu5 Apr 9, 2024
181e8ce
Reusable action for tests created and kept node version and package p…
jitu5 Apr 11, 2024
b9a8757
action path fix
jitu5 Apr 11, 2024
ace8362
Action path fix in workflow
jitu5 Apr 11, 2024
c173949
action file correction setup_tests
jitu5 Apr 11, 2024
407a1a0
checkout moved from actions
jitu5 Apr 11, 2024
708d0fb
hashFiles format added
jitu5 Apr 11, 2024
f3001c7
name updated to install_kedro_and_python_dependencies
jitu5 Apr 11, 2024
da8b24e
Condition for PR to main with windows updated
jitu5 Apr 11, 2024
7a38aca
Code review fix added
jitu5 Apr 12, 2024
2abf154
Merge branch 'main' into feature/gha-test
jitu5 Apr 15, 2024
db942b7
Merge Gatekeeper added
jitu5 Apr 16, 2024
a4e043e
All CircleCI Pipeline name added to ignore list.
jitu5 Apr 16, 2024
316c237
ci/circleci pipeline renamed
jitu5 Apr 16, 2024
01ab121
Node version updated
jitu5 Apr 16, 2024
85f5f52
Merge branch 'main' into feature/gha-test
jitu5 Apr 16, 2024
5a3dba6
Windows run for PR to main is updated
jitu5 Apr 16, 2024
454b444
Merge branch 'main' into feature/gha-test
jitu5 Apr 22, 2024
4627340
Merge branch 'main' into feature/gha-test
jitu5 Apr 22, 2024
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
26 changes: 26 additions & 0 deletions .github/workflows/merge-gatekeeper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Merge Gatekeeper
ravi-kumar-pilla marked this conversation as resolved.
Show resolved Hide resolved

on:
pull_request:
branches:
- main

jobs:
merge-gatekeeper:
runs-on: ubuntu-latest
# Restrict permissions of the GITHUB_TOKEN.
# Docs: https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs
permissions:
checks: read
statuses: read
steps:
- name: Run Merge Gatekeeper
# NOTE: v1 is updated to reflect the latest v1.x.y. Please use any tag/branch that suits your needs:
# https://github.com/upsidr/merge-gatekeeper/tags
# https://github.com/upsidr/merge-gatekeeper/branches
uses: upsidr/merge-gatekeeper@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
timeout: 3600
interval: 30
ignored: 'CircleCI Pipeline'
Loading