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: swiftlang/github-workflows
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.0.11
Choose a base ref
...
head repository: swiftlang/github-workflows
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.0.12
Choose a head ref
  • 20 commits
  • 22 files changed
  • 12 contributors

Commits on Apr 22, 2026

  1. Bump gregsdennis/dependencies-action from 1.4.1 to 1.4.2 (#266)

    Bumps [gregsdennis/dependencies-action](https://github.com/gregsdennis/dependencies-action) from 1.4.1 to 1.4.2.
    - [Release notes](https://github.com/gregsdennis/dependencies-action/releases)
    - [Commits](gregsdennis/dependencies-action@v1.4.1...v1.4.2)
    
    ---
    updated-dependencies:
    - dependency-name: gregsdennis/dependencies-action
      dependency-version: 1.4.2
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Apr 22, 2026
    Configuration menu
    Copy the full SHA
    5eee019 View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2026

  1. Configuration menu
    Copy the full SHA
    3280fe0 View commit details
    Browse the repository at this point in the history

Commits on May 1, 2026

  1. Remove workaround for bug triggered by Android environment variable (#…

    …246)
    
    We had to unset this common Android env var to work around the compiler bug, but it's
    fixed in the compiler now.
    finagolfin authored May 1, 2026
    Configuration menu
    Copy the full SHA
    a2de0e0 View commit details
    Browse the repository at this point in the history

Commits on May 12, 2026

  1. Improve Android SDK build configuration (#269)

    - Change default build command to use 'swift build' instead of
      'swift build --build-system native' (the 4/27 snapshot contains
      the requisite changes for Android)
    - Use the correct host toolchain for Android build/test
    - Add mention of the specific host SDK being used to build
    
    For Wasm, we want to wait until
    swiftlang/swift-build#1348 lands before
    unpinning.
    
    Co-authored-by: Marc Prud'hommeaux <[email protected]>
    jakepetroules and marcprux authored May 12, 2026
    Configuration menu
    Copy the full SHA
    a3aac61 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2026

  1. Configuration menu
    Copy the full SHA
    956e9f3 View commit details
    Browse the repository at this point in the history

Commits on May 24, 2026

  1. Configuration menu
    Copy the full SHA
    71b9058 View commit details
    Browse the repository at this point in the history

Commits on May 27, 2026

  1. Configuration menu
    Copy the full SHA
    ec5f486 View commit details
    Browse the repository at this point in the history

Commits on May 29, 2026

  1. Configuration menu
    Copy the full SHA
    0366eba View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2026

  1. Configuration menu
    Copy the full SHA
    c8aaa3d View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2026

  1. parametrise swift format binary (#285)

    It can be useful to be able to control which binary is used for the
    formatting soundness checks. This is particularly useful if someone
    wanted to use this script locally to reproduce the formatting
    check before committing and where they may have more than one binary
    available.
    rnro authored Jun 22, 2026
    Configuration menu
    Copy the full SHA
    2949ddd View commit details
    Browse the repository at this point in the history
  2. Extend ignore list in flake8 config (#279)

    flake8 disables a number of checks by default, e.g. W503 [1] and W504
    [2], which are conflicting checks and are both not violations of the
    PEP8 standard. In the flake8 config, the `ignore` key overrides the
    default ignore list, leading to these issues being raised in CI. The
    `extend-ignore` key extends the default ignore list instead, allowing
    these issues to correctly remain suppressed.
    
    [1]: https://www.flake8rules.com/rules/W503.html
    [2]: https://www.flake8rules.com/rules/W504.html
    snprajwal authored Jun 22, 2026
    Configuration menu
    Copy the full SHA
    cad6f2b View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2026

  1. Fix Android build for non-default NDKs with new swift-build build sys…

    …tem, by updating ANDROID_NDK_ROOT too (#280)
    
    Also, log which NDK is being used.
    finagolfin authored Jun 23, 2026
    Configuration menu
    Copy the full SHA
    0a4e35d View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2026

  1. docs: add missing closing backtick in error message (#286)

    The inline code example `swiftlang/swift-syntax was missing its
    closing backtick in the usage error message.
    Avicennasis authored Jun 24, 2026
    Configuration menu
    Copy the full SHA
    8a9e053 View commit details
    Browse the repository at this point in the history
  2. Add retry when retrieving PR information (#284)

    * Add retry when retrieving PR information
    
    Fixes: #283
    
    * Update .github/workflows/scripts/cross-pr-checkout.swift
    
    Co-authored-by: Alex Hoppen <[email protected]>
    
    ---------
    
    Co-authored-by: Alex Hoppen <[email protected]>
    bkhouri and ahoppen authored Jun 24, 2026
    Configuration menu
    Copy the full SHA
    9abcbf2 View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2026

  1. Docs: provide option to skip analysis in doc-check (#282)

    Some projects may not want to run the `--analyze` option on the DocC
    generation until they are ready.
    
    Provide an workflow input option to skip the analyze.  While at it,
    update the `check-docs.sh` script to accept arugments instead of relying
    on environment variables being set.  This allows more easily run the
    script at-desk.
    
    Fixes #2181
    bkhouri authored Jun 25, 2026
    Configuration menu
    Copy the full SHA
    b080ab5 View commit details
    Browse the repository at this point in the history
  2. Add proposal validation workflow and documentation (#288)

    * Add proposal validation workflow and documentation
    
    * Add flag to proposal validation workflow to enable testing
    
    * Add proposal validation workflow to pull_request workflow for testing
    
    * Fix indentation in pull_request.yml
    
    ---------
    
    Co-authored-by: Mishal Shah <[email protected]>
    dempseyatgithub and shahmishal authored Jun 25, 2026
    Configuration menu
    Copy the full SHA
    d65527a View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2026

  1. Update dock check syntax issue (#290)

    Fixes: #291
    bkhouri authored Jun 26, 2026
    Configuration menu
    Copy the full SHA
    6078937 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fda56f6 View commit details
    Browse the repository at this point in the history
  3. Update default Xcode versions in workflow to Xcode 27 Beta 2 (#293)

    Added Xcode version '27.b2' to the default list.
    shahmishal authored Jun 26, 2026
    Configuration menu
    Copy the full SHA
    1ec62c9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0793626 View commit details
    Browse the repository at this point in the history
Loading