Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: gradle/actions
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: actions/gradle-dependency-submission-action
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 19 commits
  • 2 files changed
  • 2 contributors

Commits on May 7, 2025

  1. Copy the full SHA
    6513ab5 View commit details
  2. Clean and add PR step

    indigok authored May 7, 2025
    Copy the full SHA
    0fbfa1f View commit details

Commits on May 8, 2025

  1. Update sync-fork.yml

    indigok authored May 8, 2025
    Copy the full SHA
    4f9919d View commit details
  2. Merge directly

    indigok authored May 8, 2025
    Copy the full SHA
    089a4a3 View commit details
  3. Update git config identity

    indigok authored May 8, 2025
    Copy the full SHA
    4f32f36 View commit details
  4. Clean steps

    indigok authored May 8, 2025
    Copy the full SHA
    f3ce7e7 View commit details

Commits on May 9, 2025

  1. Copy the full SHA
    8fbc369 View commit details
  2. Merge pull request #3 from actions/indigok-patch-1

    Create action to sync upstream
    indigok authored May 9, 2025
    Copy the full SHA
    5237c5f View commit details
  3. Switch to a PR flow

    indigok authored May 9, 2025
    Copy the full SHA
    7597ad6 View commit details

Commits on May 12, 2025

  1. Add PR permissions

    indigok authored May 12, 2025
    Copy the full SHA
    294e62b View commit details
  2. Create CODEOWNERS

    indigok authored May 12, 2025
    Copy the full SHA
    151cc92 View commit details
  3. Merge pull request #4 from actions/indigok-patch-5

    Switch sync action to a PR flow
    indigok authored May 12, 2025
    Copy the full SHA
    375f561 View commit details
  4. Merge pull request #5 from actions/indigok-patch-6

    Create CODEOWNERS
    indigok authored May 12, 2025
    Copy the full SHA
    0da0978 View commit details
  5. Copy the full SHA
    5ca3c40 View commit details
  6. Copy the full SHA
    d37fef8 View commit details
  7. Merge pull request #6 from actions/weekly-sync-branch-14980941868

    Sync Fork with Upstream
    indigok authored May 12, 2025
    Copy the full SHA
    3d07933 View commit details

Commits on May 19, 2025

  1. Copy the full SHA
    b62c5e9 View commit details
  2. Copy the full SHA
    ced7296 View commit details
  3. Merge pull request #10 from actions/weekly-sync-branch-15101667559

    Sync Fork with Upstream
    indigok authored May 19, 2025
    Copy the full SHA
    a5f6da2 View commit details
Showing with 46 additions and 0 deletions.
  1. +1 −0 .github/CODEOWNERS
  2. +45 −0 .github/workflows/sync-fork.yml
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @actions/advanced-security-dependency-graph
45 changes: 45 additions & 0 deletions .github/workflows/sync-fork.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Sync Fork with Upstream
on:
schedule:
- cron: '0 0 * * 1' # Runs at midnight UTC every Monday
workflow_dispatch:

permissions:
contents: write
pull-requests: write

jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0

- name: Fetch Upstream Remote
run: |
git remote add upstream https://github.com/gradle/actions.git
git fetch upstream
- name: Set Git Config
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
- name: Create and Push Branch
run: |
git checkout -b weekly-sync-branch-${{ github.run_id }}
git merge upstream/main --no-commit
git reset -- ./.github
git commit -m "Merge upstream:main"
git commit --allow-empty -m "Empty commit to open PR"
git push --set-upstream origin weekly-sync-branch-${{ github.run_id }}
- name: Open Pull Request
run: |
gh repo set-default actions/gradle-dependency-submission-action
gh pr create -B main -H weekly-sync-branch-${{ github.run_id }} --title 'Sync Fork with Upstream' --body 'Weekly Cron. Created by GitHub Actions.'
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}