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

Misc post open sourcing clean up #1

Merged
merged 3 commits into from
Feb 26, 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
21 changes: 1 addition & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,9 @@
name: CI

on:
workflow_dispatch:
inputs:
force_release:
description: 'Force a release to run using the current version'
default: false
required: true
type: boolean
push:
branches:
- master
- main
pull_request:

jobs:
Expand Down Expand Up @@ -61,15 +54,3 @@ jobs:
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
run: bundle exec rake
publish:
needs: build
if: needs.build.result == 'success' && (github.event_name == 'push' || inputs.force_release)
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: Betterment/workflows/gem_release@gem_release-v6
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
betterment_gh_packages_pat: ${{ secrets.BETTERMENT_GH_PACKAGES_PAT }}
force: ${{ toJSON(inputs.force_release) }}
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# with_transactional_lock

[![Build Status](https://travis-ci.com/Betterment/with_transactional_lock.svg?token=6b6DErRMUHX47kEoBZ3t&branch=master)](https://travis-ci.com/Betterment/with_transactional_lock)

A simple extension to ActiveRecord for performing advisory locking on
MySQL and PostgreSQL.

Expand Down
Loading