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

fix: try to better manage internal server error when user not granted + CI with CircleCI #2

Merged
merged 7 commits into from
Jul 18, 2024
Merged
Show file tree
Hide file tree
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
23 changes: 23 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
version: 2.1
orbs:
docker: circleci/docker@1.5.0
bot: lifen/bot@0 # locked on major version

workflows:
build:
jobs:
- docker/hadolint:
dockerfiles: Dockerfile
# DL3006: Always tag the version of an image explicitly
# SC2059 : Don't use variables in the printf format string. Use printf '..%s..' "$foo"
ignore-rules: 'DL3006,SC2059'
- bot/docker-build-and-push:
name: build-ci-docker-image
context: org-global
dockerTag: $CIRCLE_SHA1
requires:
- docker/hadolint
filters:
branches:
only:
- "master"
35 changes: 0 additions & 35 deletions .github/labeler.yml

This file was deleted.

75 changes: 0 additions & 75 deletions .github/workflows/ci.yaml

This file was deleted.

57 changes: 0 additions & 57 deletions .github/workflows/codeql.yml

This file was deleted.

117 changes: 0 additions & 117 deletions .github/workflows/create-release.yml

This file was deleted.

70 changes: 0 additions & 70 deletions .github/workflows/docs.yaml

This file was deleted.

15 changes: 0 additions & 15 deletions .github/workflows/labeler.yaml

This file was deleted.

Loading