Skip to content

[deleted] #5972

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

Closed
wants to merge 6 commits into from
Closed
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
40 changes: 40 additions & 0 deletions .github/workflows/candidate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: "Mongoid Release Candidate"
run-name: "Mongoid Release Candidate for ${{ github.ref }}"

on:
workflow_dispatch:
inputs:
dry_run:
description: Whether this is a dry run or not
required: true
default: true
type: boolean

jobs:
candidate:
name: "Mongoid Release Candidate"
environment: release
runs-on: 'ubuntu-latest'

permissions:
# required for all workflows
security-events: write

# required to fetch internal or private CodeQL packs
packages: read

# only required for workflows in private repositories
actions: read
contents: write

# required by the mongodb-labs/drivers-github-tools/setup@v2 step
# also required by `rubygems/release-gem`
id-token: write

steps:
- name: "Run the candidate action"
uses: jamis/drivers-github-tools/ruby/candidate@ruby-3643-new-release-process
with:
app_id: ${{ vars.APP_ID }}
app_private_key: ${{ secrets.APP_PRIVATE_KEY }}
dry_run: ${{ inputs.dry_run }}
2 changes: 1 addition & 1 deletion lib/mongoid/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
# rubocop:todo all

module Mongoid
VERSION = "9.0.2"
VERSION = "9.1.0"
end
6 changes: 6 additions & 0 deletions product.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
name: Mongoid
package: mongoid
version:
number: 9.1.0
file: lib/mongoid/version.rb
Loading