やあ、皆さん ![]()
タイトルにもある通り、コードのコメントにアラビア語を書くと、Opera ブラウザでトピックを投稿した後、正しく表示されません。
しかし、プレビューモードや他のブラウザ(例:)では問題なく動作しています。
# This is a basic workflow to help you get started with Actions
name: CI Name # ここにプロセス名を入力します
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on: # プロセス開始タイミングを設定するために使用します
push: # コードをメインブランチ(master)にプッシュするとプロセスが開始されます
branches: [ master ]
pull_request: # プルリクエストが作成された際にプロセスが開始されます
branches: [ master ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs: # 各プロセスは複数のジョブで構成されます
# This workflow contains a single job called "build"
build-for-production: # サーバーが実行するジョブを表す任意の名前を付けます
# The type of runner that the job will run on
runs-on: ubuntu-latest # サーバーの OS。画像に多くのオプションが示されています
# Steps represent a sequence of tasks that will be executed as part of the job
steps: # サーバーが実行する手順またはタスク
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2 # このステップは重要です。サーバーを現在のフォルダーまたはプロジェクトに誘導します
# Runs a single command using the runners shell
- name: Run a one-line script # 最初のタスクの名前
run: echo Hello, world! # 最初のタスクのコマンド
# Runs a set of commands using the runners shell
- name: Run a multi-line script # 2 番目のタスクの名前
run: |
echo Add other actions to build, # 2 番目のタスクのコマンド
echo test, and deploy your project.
これは当インスタンスからの例です。
Discourse を 2.5.0.beta5 から 2.5.0.beta7 に更新してみましたが、問題は解決しませんでした。
編集:なぜかあなたのサイトでは動作するようですが、それはわかりません ![]()
ただし、このバグに気づいた元のトピックは https://forums.coretabs.net/t/ما-معنى-devops؟-دليلك-التطبيقي-لميكنة-مشروعاتك/4917 です。


