Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ blank_issues_enabled: true
contact_links:
- name: Installation or Execution failed
about: Check the Discussions section for reports of a failing installation. Submit your experience (plus logs) if you cannot find reports similar to yours.
url: https://github.com/rubygems/rubygems/discussions
url: https://github.com/ruby/rubygems/discussions
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/rubygems-related-issue.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ assignees: ''
<!--

Thank you for contributing to the
[rubygems](https://github.com/rubygems/rubygems) repository, and specifically to
[rubygems](https://github.com/ruby/rubygems) repository, and specifically to
[RubyGems](https://guides.rubygems.org/).

-->
Expand Down
2 changes: 1 addition & 1 deletion .github/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ newPRWelcomeComment: |

If you have any questions or concerns that you wish to ask, feel free to leave a comment in this PR or join our #rubygems or #bundler channel on [Slack](http://slack.bundler.io/).

For more information about contributing to the RubyGems project feel free to review our [CONTRIBUTING](https://github.com/rubygems/rubygems/blob/master/doc/rubygems/CONTRIBUTING.md) guide
For more information about contributing to the RubyGems project feel free to review our [CONTRIBUTING](https://github.com/ruby/rubygems/blob/master/doc/rubygems/CONTRIBUTING.md) guide
4 changes: 2 additions & 2 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ alternatives, explain why you end up choosing the current implementation -->
## Make sure the following tasks are checked

- [ ] Describe the problem / feature
- [ ] Write [tests](https://github.com/rubygems/rubygems/blob/master/doc/bundler/development/PULL_REQUESTS.md#tests) for features and bug fixes
- [ ] Write [tests](https://github.com/ruby/rubygems/blob/master/doc/bundler/development/PULL_REQUESTS.md#tests) for features and bug fixes
- [ ] Write code to solve the problem
- [ ] Make sure you follow the [current code style](https://github.com/rubygems/rubygems/blob/master/doc/bundler/development/PULL_REQUESTS.md#code-formatting) and [write meaningful commit messages without tags](https://github.com/rubygems/rubygems/blob/master/doc/bundler/development/PULL_REQUESTS.md#commit-messages)
- [ ] Make sure you follow the [current code style](https://github.com/ruby/rubygems/blob/master/doc/bundler/development/PULL_REQUESTS.md#code-formatting) and [write meaningful commit messages without tags](https://github.com/ruby/rubygems/blob/master/doc/bundler/development/PULL_REQUESTS.md#commit-messages)
4 changes: 2 additions & 2 deletions .github/workflows/daily-bundler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
daily_bundler:
name: Bundler (ruby-head)
runs-on: ubuntu-24.04
if: github.repository == 'rubygems/rubygems'
if: github.repository == 'ruby/rubygems'
env:
RGV: ..
steps:
Expand All @@ -42,7 +42,7 @@ jobs:
bin/rake spec:all
- name: Get previous status
if: always()
run: echo "OLD_STATUS=$(curl -sS 'https://api.github.com/repos/rubygems/rubygems/actions/workflows/daily-bundler.yml/runs?event=schedule&branch=master' | jq '.workflow_runs | .[1].conclusion')" >> $GITHUB_ENV
run: echo "OLD_STATUS=$(curl -sS 'https://api.github.com/repos/ruby/rubygems/actions/workflows/daily-bundler.yml/runs?event=schedule&branch=master' | jq '.workflow_runs | .[1].conclusion')" >> $GITHUB_ENV

- uses: 8398a7/action-slack@77eaa4f1c608a7d68b38af4e3f739dcd8cba273e # v3.19.0
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/daily-rubygems.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
daily_rubygems:
name: Rubygems (${{ matrix.ruby }})
runs-on: ${{ matrix.os }}
if: github.repository == 'rubygems/rubygems'
if: github.repository == 'ruby/rubygems'
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:

- name: Get previous status
if: always()
run: echo "OLD_STATUS=$(curl -sS 'https://api.github.com/repos/rubygems/rubygems/actions/workflows/daily-rubygems.yml/runs?event=schedule&branch=master' | jq '.workflow_runs | .[1].conclusion')" >> $GITHUB_ENV
run: echo "OLD_STATUS=$(curl -sS 'https://api.github.com/repos/ruby/rubygems/actions/workflows/daily-rubygems.yml/runs?event=schedule&branch=master' | jq '.workflow_runs | .[1].conclusion')" >> $GITHUB_ENV

- uses: 8398a7/action-slack@77eaa4f1c608a7d68b38af4e3f739dcd8cba273e # v3.19.0
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ruby-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
working-directory: ruby/ruby
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
path: rubygems/rubygems
path: rubygems/rubygems # We need to backport repository url to sync_default_gems.rb of `ruby_3_4` branch.
persist-credentials: false
- name: Sync tools
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/weekly-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
weekly_update:
name: Rubygems weekly update
runs-on: ${{ matrix.os }}
if: github.repository == 'rubygems/rubygems'
if: github.repository == 'ruby/rubygems'
strategy:
matrix:
os: [ubuntu-24.04]
Expand Down
Loading