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: JuliaLang/Example.jl
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: julia-actions/Example.jl
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: action-tests
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
  • 8 commits
  • 4 files changed
  • 3 contributors

Commits on Dec 8, 2020

  1. Add test output files for action tests

    - julia-runtest
    
    - julia-buildpkg
    SaschaMann committed Dec 8, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    SaschaMann Sascha Mann
    Copy the full SHA
    46404cb View commit details

Commits on Mar 9, 2022

  1. Create compathelper.yml

    SaschaMann authored Mar 9, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    c1217ec View commit details
  2. Merge pull request #8 from julia-actions/compathelper-test

    Create compathelper.yml
    SaschaMann authored Mar 9, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3180cd4 View commit details
  3. Update compathelper.yml

    SaschaMann authored Mar 9, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    00f5e04 View commit details
  4. Delete compathelper.yml

    SaschaMann authored Mar 9, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    7cf8329 View commit details

Commits on Jan 8, 2023

  1. Update ci.yml

    SaschaMann authored Jan 8, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    75ac10b View commit details

Commits on Feb 15, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    e37457a View commit details

Commits on Sep 26, 2024

  1. Update TagBot.yml

    ViralBShah authored Sep 26, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    b85896f View commit details
Showing with 30 additions and 12 deletions.
  1. +24 −2 .github/workflows/TagBot.yml
  2. +1 −10 .github/workflows/ci.yml
  3. +2 −0 deps/build.jl
  4. +3 −0 test/runtests.jl
26 changes: 24 additions & 2 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,33 @@
name: TagBot
on:
schedule:
- cron: 0 * * * *
issue_comment:
types:
- created
workflow_dispatch:
inputs:
lookback:
default: "3"
permissions:
actions: read
checks: read
contents: write
deployments: read
issues: read
discussions: read
packages: read
pages: read
pull-requests: read
repository-projects: read
security-events: read
statuses: read
jobs:
TagBot:
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
runs-on: ubuntu-latest
steps:
- uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
# Edit the following line to reflect the actual name of the GitHub Secret containing your private key
ssh: ${{ secrets.DOCUMENTER_KEY }}
# ssh: ${{ secrets.NAME_OF_MY_SSH_PRIVATE_KEY_SECRET }}
11 changes: 1 addition & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -37,16 +37,7 @@ jobs:
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v1
env:
cache-name: cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
2 changes: 2 additions & 0 deletions deps/build.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# julia-actions/julia-buildpkg
touch(joinpath(homedir(), "julia-buildpkg"))
3 changes: 3 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -2,3 +2,6 @@ using Test, Example

@test hello("Julia") == "Hello, Julia"
@test domath(2.0) 7.0

# julia-actions/julia-runtest
touch(joinpath(ENV["HOME"], "julia-runtest"))