build: validate manifests against 1.28.0 #10768
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: mergebot | |
on: | |
pull_request: | |
types: [opened, reopened, edited, synchronize, closed, labeled] | |
issue_comment: | |
branches: '**' | |
workflow_dispatch: | |
jobs: | |
handle: | |
runs-on: ubuntu-latest | |
env: | |
GH_TOKEN: ${{ secrets.MERGEBOT_TOKEN }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set mergebot username | |
run: git config --global user.name d2iq-mergebot | |
- name: Set mergebot email | |
run: git config --global user.email ci-mergebot@d2iq.com | |
- name: Set gpg key id | |
run: git config --global user.signingKey ${{ secrets.MERGEBOT_GPG_KEY_ID }} | |
- name: Import GPG key | |
uses: crazy-max/ghaction-import-gpg@v4 | |
with: | |
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} | |
passphrase: ${{ secrets.GPG_PASSPHRASE }} | |
git_user_signingkey: true | |
git_commit_gpgsign: true | |
- name: Fetch Mergebot code | |
uses: actions/checkout@v3 | |
with: | |
repository: mesosphere/mergebot | |
path: mergebot_code/mergebot | |
persist-credentials: false | |
token: ${{ secrets.MERGEBOT_TOKEN }} | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
cache: 'pip' | |
- name: Install mergebot Python dependencies | |
run: pip install -r ./mergebot_code/mergebot/requirements.txt | |
- name: Run Mergebot | |
env: | |
LOG_STDOUT: "true" | |
EVENT_TYPE: ${{ github.event_name }} | |
RUN_ID: ${{ github.run_id }} | |
MERGEBOT_TC_USERNAME: ${{secrets.MERGEBOT_TC_USERNAME}} | |
MERGEBOT_TC_PASSWORD: ${{secrets.MERGEBOT_TC_PASSWORD}} | |
MERGEBOT_TC_TOKEN: ${{secrets.MERGEBOT_TC_TOKEN}} | |
MERGEBOT_JIRA_EMAIL: ${{secrets.MERGEBOT_JIRA_EMAIL}} | |
MERGEBOT_JIRA_TOKEN: ${{secrets.MERGEBOT_JIRA_TOKEN}} | |
run: export EVENT=$(cat ${{github.event_path}}); export MERGEBOT_CONFIG=$(cat mergebot-config.json); cd mergebot_code; cd mergebot; python __main__.py |