Skip to content

Commit

Permalink
Conform to the auto-merging guidelines
Browse files Browse the repository at this point in the history
Move the `TagBot.yml` in the proper location.
Add the GNU GPL3 license to be able to auto-merge
  • Loading branch information
EliasBcd committed May 19, 2021
1 parent 4f5fbb9 commit c6df312
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 23 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: TagBot
on:
issue_comment:
types:
- created
workflow_dispatch:
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 }}
user: Elias Bouacida
email: elias@bouacida.fr
ssh: ${{ secrets.DOCUMENTER_KEY }}
16 changes: 4 additions & 12 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@

src/.ipynb_checkpoints/Preferences-checkpoint.jl
.ipynb_checkpoints/Manifest-checkpoint.toml
.ipynb_checkpoints/Project-checkpoint.toml
.ipynb_checkpoints/README-checkpoint.md
src/.ipynb_checkpoints/Cyclicity-checkpoint.jl
src/.ipynb_checkpoints/Degree-checkpoint.jl
src/.ipynb_checkpoints/Predictions-checkpoint.jl
src/.ipynb_checkpoints/RevealedPreferences-checkpoint.jl
src/Rationality/.ipynb_checkpoints/Axioms-checkpoint.jl
src/Rationality/.ipynb_checkpoints/Indices-checkpoint.jl
test/.ipynb_checkpoints/runtests-checkpoint.jl
.ipynb_checkpoints/TagBot-checkpoint.yml
.ipynb_checkpoints/*
src/.ipynb_checkpoints/*
src/Rationality/.ipynb_checkpoints/*
test/.ipynb_checkpoints/*
23 changes: 23 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
The RevealedPreference.jl package is licensed under the GNU GPL-3.0 license.

> The RevealedPreferences.jl package aims at deducing preferences from data of observed choices.
> Copyright (C) 2021 [Elias Bouacida](mailto:elias@bouacida.fr)
> This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
> This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
> You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
RevealedPreferences depends on other Julia packages that may have different licenses:

- LightGraphs
- DataFrames
- IterTools
- GLPK

The algorithms in this package have benefited from my work with [Daniel Martin](http://www.martinonline.org/daniel/research.html).
11 changes: 0 additions & 11 deletions TagBot.yml

This file was deleted.

2 comments on commit c6df312

@EliasBcd
Copy link
Owner Author

Choose a reason for hiding this comment

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

@JuliaRegistrator register()

@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 updated: JuliaRegistries/General/36973

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 the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.0 -m "<description of version>" c6df312f66628582efc27b60ce867ac4822a718d
git push origin v0.2.0

Please sign in to comment.