Skip to content
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