Skip to content
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
18 changes: 12 additions & 6 deletions .github/workflows/create-release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ on:
- "**.md"
workflow_dispatch:

permissions: read-all
permissions:
contents: write
pull-requests: write
issues: write

jobs:
create-release-pr:
Expand All @@ -24,16 +27,19 @@ jobs:
ruby-version: 3.2
bundler-cache: true

- name: Configure Git
- name: Install dependencies
run: |
git config --global user.email github-actions[bot]@users.noreply.github.com
git config --global user.name github-actions[bot]
gem install faraday-retry
gem install git-pr-release --no-document

- name: Install git-pr-release
run: gem install git-pr-release --no-document
- name: Configure Git
run: |
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"

- name: Create Release PR
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GIT_PR_RELEASE_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GIT_PR_RELEASE_BRANCH_PRODUCTION: main
GIT_PR_RELEASE_BRANCH_STAGING: develop
Expand Down
2 changes: 1 addition & 1 deletion docker/innovation/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ARG MYSQL_SHELL_VERSION=9.2.0
RUN useradd -ms /bin/bash mysqlshelluser

RUN apt-get update && apt-get install -y \
wget \
wget=1.21.* \
&& rm -rf /var/lib/apt/lists/* \
&& wget https://dev.mysql.com/get/Downloads/MySQL-Shell/mysql-shell_${MYSQL_SHELL_VERSION}-1debian12_amd64.deb \
&& apt-get update \
Expand Down
2 changes: 1 addition & 1 deletion docker/lts/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ARG MYSQL_SHELL_VERSION=8.4.4
RUN useradd -ms /bin/bash mysqlshelluser

RUN apt-get update && apt-get install -y \
wget \
wget=1.21.* \
&& rm -rf /var/lib/apt/lists/* \
&& wget https://dev.mysql.com/get/Downloads/MySQL-Shell/mysql-shell_${MYSQL_SHELL_VERSION}-1debian12_amd64.deb \
&& apt-get update \
Expand Down