Skip to content

Commit

Permalink
Add simple workflow
Browse files Browse the repository at this point in the history
Change-Id: Iae5adac03d980d5f0dc7ad704502cfae829c7bd6
  • Loading branch information
oxve committed Jun 13, 2024
1 parent 5e8fa2d commit db0fa10
Show file tree
Hide file tree
Showing 3 changed files with 77 additions and 8 deletions.
8 changes: 8 additions & 0 deletions .github/actions/pre_commit/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,19 @@ inputs:
runs:
using: "composite"
steps:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install Pip Packages
shell: bash
run: pip install --require-hashes --no-deps -r ${GITHUB_WORKSPACE}/precommit_hooks/requirements.txt
- run: pre-commit run --show-diff-on-failure --color=always --from-ref ${{ inputs.base_ref }} --to-ref HEAD
shell: bash
env:
SKIP: 'run-py2-tests'
- run: pre-commit run --show-diff-on-failure --color=always --hook-stage push --from-ref ${{ inputs.base_ref }} --to-ref HEAD
if: inputs.base_ref
shell: bash
env:
SKIP: 'test-download-from-gcs-helper,check-bug-in-commit-message,check-if-starboard-interface-changed'
69 changes: 69 additions & 0 deletions .github/workflows/documentation.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
name: Cobalt Documentation

on:
pull_request:
push:
branches:
- main
- 25.lts.1+

concurrency:
group: '${{ github.workflow }}-${{ github.event_name }} @ ${{ github.event.pull_request.number || github.sha }}'
cancel-in-progress: true

permissions: {}

jobs:
developer-docs:
name: Generate Docs
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: kaidokert/[email protected]
with:
fetch-depth: 0
persist-credentials: false
- name: Docker Build
run: docker build -t docsite --build-arg UID=$(id -u) --build-arg GID=$(id -g) cobalt/site/docker
shell: bash
- name: Docker Run
run: docker run --mount type=bind,source=$(pwd),target=/code docsite
shell: bash
- name: Stage files for pre-commit
run: git add -A
shell: bash

- name: Run pre-commit
uses: ./.github/actions/pre_commit
with:
base_ref: ${{ github.event.pull_request.base.sha || github.event.before }}


- name: Git diff (DEBUG)
run: |
git reset
git diff
shell: bash
- name: Commit documentation changes
run: |
git add cobalt/site/docs
git config --global user.name "GitHub Release Automation"
git config --global user.email "[email protected]"
git commit -m 'Documentation updates'
shell: bash

- name: Create Pull Request
id: create-pr
continue-on-error: true
uses: peter-evans/create-pull-request@2b011faafdcbc9ceb11414d64d0573f37c774b04 # v4.2.3
with:
# token: ${{ secrets.CHERRY_PICK_TOKEN }}
base: ${{ github.base_ref }}
branch: doc-${{ github.event.pull_request.number }}
committer: GitHub Release Automation <[email protected]>
title: "Documentation change for #${{ github.event.pull_request.number }}: ${{ github.event.pull_request.title }}"
body: |
Refer to the original PR: https://github.com/${{ github.repository }}/pull/${{ github.event.pull_request.number }}
${{ github.event.pull_request.body }}
8 changes: 0 additions & 8 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,6 @@ jobs:
with:
fetch-depth: 0
persist-credentials: false
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install Pip Packages
run: pip install --require-hashes --no-deps -r ${GITHUB_WORKSPACE}/precommit_hooks/requirements.txt
- name: Download Resources
run: python ${GITHUB_WORKSPACE}/download_resources.py
- name: Run pre-commit
uses: ./.github/actions/pre_commit
with:
Expand Down

0 comments on commit db0fa10

Please sign in to comment.