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: advanced-security/maven-dependency-submission-action
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: actions/maven-dependency-submission-action
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 15 commits
  • 2 files changed
  • 2 contributors

Commits on May 9, 2025

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    99b170e View commit details
  2. Update sync-fork.yaml

    indigok authored May 9, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    ab28f47 View commit details
  3. Keep file ext consistent

    indigok authored May 9, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    cbd8124 View commit details
  4. Merge pull request #6 from actions/indigok-patch-1

    Create action to sync upstream
    indigok authored May 9, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    0da6b94 View commit details
  5. Switch to a PR flow

    indigok authored May 9, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    e7f955d View commit details

Commits on May 12, 2025

  1. Merge pull request #7 from actions/indigok-patch-1

    Switch sync action to a PR flow
    indigok authored May 12, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    477eb3e View commit details
  2. Add PR permissions

    indigok authored May 12, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    de71a52 View commit details
  3. Merge pull request #8 from actions/indigok-patch-1

    Add PR permissions to Sync workflow
    indigok authored May 12, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    137cf9a View commit details
  4. Create CODEOWNERS

    indigok authored May 12, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    7bd449e View commit details
  5. Merge pull request #10 from actions/indigok-patch-1

    Create CODEOWNERS
    indigok authored May 12, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    4fa0fa1 View commit details

Commits on May 13, 2025

  1. Copy the full SHA
    f79a6b5 View commit details

Commits on May 14, 2025

  1. Merge pull request #11 from actions/weekly-sync-branch

    Merge branch 'main' into weekly-sync-branch
    indigok authored May 14, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    0ac7fe9 View commit details

Commits on May 22, 2025

  1. Copy the full SHA
    2be53d9 View commit details
  2. Fix CODEOWNERS

    dangoor committed May 22, 2025
    Copy the full SHA
    3b967f5 View commit details
  3. Merge pull request #12 from actions/main-sync

    Synchronize from upstream (advanced-security)
    dangoor authored May 22, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    c781803 View commit details
Showing with 46 additions and 1 deletion.
  1. +1 −1 .github/CODEOWNERS
  2. +45 −0 .github/workflows/sync-fork.yml
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Managed and Maintained by:

* @advanced-security/advanced-security-dependency-graph
* @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/advanced-security/maven-dependency-submission-action.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/maven-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 }}