Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Algocircle/Cascadia.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
aviks committed Mar 18, 2020
2 parents 6f9f5c3 + 4ed55a0 commit 5fc04c6
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/CompatHelpter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: CompatHelper

on:
schedule:
- cron: '00 09 * * *'

jobs:
CompatHelper:
runs-on: ubuntu-latest
steps:
- uses: julia-actions/setup-julia@latest
with:
version: 1.3
- name: Pkg.add("CompatHelper")
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
- name: CompatHelper.main()
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: julia -e 'using CompatHelper; CompatHelper.main()'
11 changes: 11 additions & 0 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: TagBot
on:
schedule:
- cron: 26 23 * * *
jobs:
TagBot:
runs-on: ubuntu-latest
steps:
- uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Specifically, the following selector types are tested, and known to work.
| `address[title="foo"]` |
| `[title ~= foo]` |
| `[title~="hello world"]` |
| `[lang|="en"]` |
| `[lang\|="en"]` |
| `[title^="foo"]` |
| `[title$="bar"]` |
| `[title*="bar"]` |
Expand Down Expand Up @@ -135,7 +135,7 @@ Specifically, the following selector types are tested, and known to work.
| `p:matches([a-z])` |
| `p:matches([a-zA-Z])` |
| `p:matches([^\d])` |
| `p:matches(^(0|a))` |
| `p:matches(^(0\|a))` |
| `p:matches(^\d+$)` |
| `p:not(:matches(^\d+$))` |
| `div :matchesOwn(^\d+$)` |
Expand Down

2 comments on commit 5fc04c6

@aviks
Copy link
Collaborator Author

@aviks aviks commented on 5fc04c6 Mar 18, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/11154

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.5.0 -m "<description of version>" 5fc04c69ad74d9b7ec308805f655dbb9823a7ca8
git push origin v0.5.0

Please sign in to comment.