Skip to content

Commit

Permalink
add gh config
Browse files Browse the repository at this point in the history
  • Loading branch information
celuchmarek committed Feb 26, 2024
1 parent 65c1e2e commit ea5198b
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Only authorized users can change workflows
.github @slovensko-digital/sro-maintainers
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "bundler"
directory: "/"
schedule:
interval: "weekly"
54 changes: 54 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Push CI

on:
push:
pull_request:

jobs:
# test:
# runs-on: ubuntu-latest

# env:
# PGHOST: localhost
# RAILS_ENV: test

# services:
# postgres:
# image: postgres:14-alpine
# env:
# POSTGRES_USER: runner
# POSTGRES_HOST_AUTH_METHOD: trust
# ports:
# - 5432:5432
# options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5

# steps:
# - uses: actions/checkout@v2
# - uses: ruby/setup-ruby@v1
# with:
# bundler-cache: true

# - run: bundle exec rails db:setup --trace
# - run: bundle exec rails test
# - run: bundle exec rails test:system
# - run: bundle exec rails test:integration

gitlab-push:
name: Push to GitLab

if: ${{(github.ref == 'refs/heads/main')}}

runs-on: ubuntu-latest

# needs: test

steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0

- uses: dokku/github-action@master
with:
git_push_flags: '--force'
git_remote_url: ssh://git@${{secrets.GITLAB_DEPLOY_HOST}}/${{github.event.repository.name}}.git
ssh_private_key: ${{secrets.GITLAB_DEPLOY_KEY}}

0 comments on commit ea5198b

Please sign in to comment.